0.0.1 • Published 10 years ago

findhit-process v0.0.1

Weekly downloads
2
License
GPL v3
Repository
github
Last release
10 years ago

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');
	},
});