[nodejs] [module] npm-auto-dep new tool for managing dependencies

2013-11-21 Thread OhJeez
Hi,
I just published new tool for managing module dependencies, have a peek 
here:
https://github.com/OhJeez/npm-auto-dep

It differs from the ones already available, that it is interactive. You can 
modify version spec, ignore some dependencies, tell npm to get that one 
module from github etc.

It works by greping module sources (so Linux/Unix only), then some simple 
regexp heuristics to guess if given require is of external module. It asks 
user what to do with every module it finds, and then changes dependencies 
in package.json as needed (after confirmation).

If it proves to be in anyway popular I would consider adding these:

   - Removing dependencies (now they can be only added or changed)
   - Better git repository handling (hash revision specifying, custom 
   repositories)
   - Managing of devDependencies
   - Moving deps between production and dev

Feel welcomed to drop an issue on github if something is working not as 
expected or if you would like to see a new feature! (including those above)

Cheers

-- 
-- 
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@googlegroups.com
To unsubscribe from this group, send email to
nodejs+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/nodejs?hl=en?hl=en

--- 
You received this message because you are subscribed to the Google Groups 
"nodejs" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to nodejs+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.


[nodejs] Readline history management

2013-05-15 Thread OhJeez
Hi,
I would like to add some history management to the native readline lib. I 
mean features like:
 - setting history size
 - exporting and importing history to/from array
 - histcontrol: erasedups, maybe ignorespace and ignoredups
 - ability to switch adding to history and reading from history on or off

I have a couple of questions regarding how and if I should do it
 - does such feature have place in the core?
 - in order to save shifting history entries around memory with big 
histsize and erasedups should I implement a new data structure or reuse an 
existing one?
 - what functionality except the features listed above should I include? 
For example I thought of history "namespaces" but those would be trivial 
with export/import from arrays.

Regards,
OhJeez

-- 
-- 
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@googlegroups.com
To unsubscribe from this group, send email to
nodejs+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/nodejs?hl=en?hl=en

--- 
You received this message because you are subscribed to the Google Groups 
"nodejs" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to nodejs+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.