Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
https://github.com/williamkapke/bson-objectid
mkdir node-test
cd node-test
npm init
npm install bson-objectid --save
touch index.js
código index.js
var ObjectID = require("bson-objectid");
console.log("output")
for (i=0; i<=300; i++){
console.log(ObjectID());
}
executando
node index.js > output.txt
Add Comment
Please, Sign In to add comment