Re: [nodejs] node.js cluster multiprocess logging solution

2014-05-12 Thread hij1nx
Yeah, but don't log to disk if you care about performance, which I'm guessing you do since you're using cluster :) Here's why -- https://medium.com/node-js-javascript/37a93d4e0013. You may also want to look at this -- https://github.com/hij1nx/net-log -- https://twit

[nodejs] [ann] level-users; store and get users, salt passwords, persist to disk, etc.

2013-08-14 Thread hij1nx
ttp://dailyjs.com/2013/04/19/leveldb-and-node-1/> . - It has tests ;) Here is the link to the project on github: https://github.com/hij1nx/level-users -- Paolo Fragomeni github.com/hij1nx twitter.com/hij1nx -- -- Job Board: http://jobs.nodejs.org/ Posting guidelines: https://github.com/joyent/nod

[nodejs] Re: [ANN] node-ifconfig: a simple module that execs ifconfig and parses its output

2013-05-28 Thread hij1nx
People interested in this module may also find Fedor's `ip` module very useful -- https://github.com/indutny/node-ip var ip = require('ip') ip.address() // my external address ip.address('public') ip.address('private') ip.address('en0', 'ipv6') // device specific addresses and/or family-of addr

[nodejs] [ANN] A simpler tool to filter json streams/logging output using JSONSelect and format the output

2013-05-26 Thread hij1nx
b.com/hij1nx/logmap -- -- Job Board: http://jobs.nodejs.org/ Posting guidelines: https://github.com/joyent/node/wiki/Mailing-List-Posting-Guidelines You received this message because you are subscribed to the Google Groups "nodejs" group. To post to this group, send email to nodejs@g

[nodejs] [ANN] A GUI for LevelDB management. Includes builtin visualization tools

2013-04-22 Thread hij1nx
Levelweb <https://github.com/hij1nx/levelweb> -- A GUI for LevelDB management. Includes builtin visualization tools. Explore your data, save queries to run continuous visualizations of your data! This is a work in progress so suggestions and contributions are welcome! Fork, Star, et

[nodejs] Re: StrongLoop Node Beta 3 is out with support for private npm repos and more!

2013-04-09 Thread hij1nx
This looks amazing! Nice work! On Tuesday, April 9, 2013 1:41:17 PM UTC-4, Jimmy Guerrero wrote: > > StrongLoop Node Beta 3 is out! Support for private npm repos and > updates to the cmd line tool - check it: http://bit.ly/14UGXLq > > Let us know what you think! > > -- Jimmy > -- -- Job Boa

[nodejs] [ANN] node-chrome: a very simple module for building desktop apps

2013-02-04 Thread hij1nx
*node-chrome(3)* A tiny module for building desktop apps. It's really simple and uses the chrome runtime. *Here's the module.* https://github.com/hij1nx/node-chrome/ *Here's an example.* #!/usr/bin/env node var cn = require('../lib'); var opts = { runtime: "/A

[nodejs] LevelDB Admin for Node.js

2013-01-07 Thread hij1nx
A CLI tool & REPL with autosuggest and autocomplete. https://github.com/hij1nx/lev # More about LevelDB LevelDB is a fast key-value storage library written at Google that provides an ordered mapping from string keys to string values. ## Features - Keys and values are arbitrary

[nodejs] [ANN] streaming git

2012-11-03 Thread hij1nx
RT @nodejitsu: do you want streaming #git <https://plus.google.com/s/%23git> implemented in #Nodejs <https://plus.google.com/s/%23Nodejs>? join the fun by forking or star it to show your support! -- https://github.com/hij1nx/git-stream -- Job Board: http://jobs.nodejs.org/ Postin

[nodejs] [ann] Professional Node.js training in NYC from thenodefirm.com

2012-07-27 Thread hij1nx
thenodefirm.com training event in NYC! Thursday, August 2nd from 10:00 am to 5:00 pm Friday, August 3rd from 10:00 am to 5:00 pm The Node Firm consists of hackers who not only use Node.js in production, but also develop and manage the Node.js project itself. The Node Firm's complete Node.js Tr

[nodejs] An interactive console.dir() for the terminal/nodejs.

2012-04-23 Thread hij1nx
https://github.com/hij1nx/cdir Usage: `console.dir = require('cdir'); console.dir(object);` <https://github.com/hij1nx/cdir/raw/master/screenshot.png> -- Job Board: http://jobs.nodejs.org/ Posting guidelines: https://github.com/joyent/node/wiki/Mailing-List-Posting-Guideli

[nodejs] Re: Build tool

2012-02-02 Thread hij1nx
You could call Browserify a build tool, but it has a single purpose (which is good!), it will bundle your commonjs for use in the browser. But a lot of the tools mentioned are more general purpose software build tools. -- Paolo Fragomeni Co-founder, CTO Nodejitsu, Inc. www.twitter.com/hij1nx

[nodejs] Re: Build tool

2012-02-01 Thread hij1nx
do any of these do automatic dependency resolving? On Feb 1, 12:23 am, Phoscur wrote: > Great, an alternative to browserify! This is perfect. Now I can choose a > build process to combine this with. > Thanks a lot! > > So far I've seen > cake, grunt and codesurgeon for the build process > and >

[nodejs] Re: Build tool

2012-01-31 Thread hij1nx
Checkout codesurgeon. https://github.com/hij1nx/codesurgeon We use this at nodejitsu and for a number of the http://github.com/flatiron projects. -- Paolo Fragomeni Co-founder, CTO Nodejitsu, Inc. www.twitter.com/hij1nx www.github.com/hij1nx On Jan 31, 1:52 pm, deitch wrote: > Been a l