0.1.0 • Published 11 years ago

sysconf v0.1.0

Weekly downloads
3
License
-
Repository
github
Last release
11 years ago

sysconf

Node bindings for sysconf(3)

sysconf - get configuration information at run time

#include <unistd.h>
long sysconf(int name);

Installation

$ npm install sysconf 

Usage

Example

var sysconf = require('sysconf');

// get clock ticks 
console.log(sysconf.get(sysconf._SC_CLK_TCK)); // 100

License

MIT