ns随机字节
Node randombytes的NativeScript polyfill
npm i --save ns随机字节

NativeScript randombytes模拟器

randombytes包 在 {N} 运行时中无法使用,因此如果您需要,请用此包替换它。

安装

tns plugin add nativescript-randombytes

用法

var randomBytes = require('nativescript-randombytes');

// sync usage
console.log("randomBytes: " + randomBytes(16));

// async usage
randomBytes(16, function (ignore, result) {
console.log("randomBytes async: " + result);
})