findhit-process
v0.0.1
Published
javascript process library compatible with browser-side
Downloads
15
Maintainers
Readme
findhit-process
Wraps all capabilities of process
on nodejs, some slightly modified, and it is designed to run on browser-side too.
Instalation
npm install findhit/findhit-process --save
Usage
var Process = require('findhit-process');
Process.nextTick(function () {
this.sodomethingAsync();
}, {
sodomethingAsync: function () {
console.log('yupi');
},
});