NodeJS中的“唯一名称”

时间:2015-07-07 15:21:19

标签: node.js

我已经实现了一个NodeJS服务器,它能够接收来自多个用户的流。但是现在,我对音频文件的名称有疑问。 目前有效的解决方案是:

  var d = new Date();
  n = d.getTime();

    var fileWriter = new wav.FileWriter(n + '.wav', {
    channels: 1,
    sampleRate: 48000,
    bitDepth: 16
  });

所以我在1970年之后给出毫秒。这不是更漂亮的解决方案,我想给每条记录一个“唯一的名字”。我怎样才能做到这一点?

1 个答案:

答案 0 :(得分:0)

可能的解决方案: unique-name

用法:

var uniquename = require('unique-name');
var test = uniquename.gen();
console.log(test);
console.log(typeof test);//string
var test2 = uniquename.gen();
console.log(test2);