You cannot post messages because only members can post, and you are not currently a member.
Description:
Discussion on Node.js
|
|
|
Module naming
|
| |
Hi all,
I really want to name my modules however I like and be installable and
require-able.
For example, I want to write a 'merge' utility, and I don't want to
struggle coming up with a random set of letters because I want my code
to read require('merge') not require('golalamergifiable').... more »
|
|
daonode: a functional logic solver with built in parser.
|
| |
I have released daonode on npm and [link] To use daonode, just: npm install daonode Dao is a functional logic solver, unifying code with data, grammar with program, logic with functional, compiling with running. Daonode is a porting, rewriting and upgrading from python to coffeecript(so... more »
|
|
streamcount - Sketch algorithms for real-time analytics
|
| |
Hi all, [link] I just published the streamcount module to npm. It implements the HyperLogLog and Count-Min sketch data structures for real-time counting of unique IDs (useful for unique visitor analytics) or tracking counts of the top most observed IDs (useful for top viewed pages/videos/products/etc... more »
|
|
Node v0.10.8 (Stable)
|
| |
2013.05.24, Version 0.10.8 (Stable)
* v8: update to 3.14.5.9
* uv: upgrade to 0.10.8
* npm: Upgrade to 1.2.23
* http: remove bodyHead from 'upgrade' events (Nathan Zadoks)
* http: Return true on empty writes, not false (isaacs)
* http: save roundtrips, convert buffers to strings (Ben Noordhuis)... more »
|
|
HTTP - how to send multiple pre-cached gzipped chunks?
|
| |
Lets say I have 2 individually gziped html chunks in memory. Can I send chunk1+chunk2 to HTTP client? Does any browser supports this? Or there is no way to do this and I have to gzip the whole stream not individual chunks? I want to serve to clients for example chunk1+chunk2 and chunk2+chunk1 etc... more »
|
|
vnc over gif
|
| |
[link] Friday evening project: vnc viewer based on animated gif image stream. Browser requirement: netscape 2.0+ Regards Andrey.
|
|
Node JS and DOM Manipulation
|
| |
Hi, This is a post to get some suggestions over DOM Manipulation using JSDOM in nodejs. We have currently written a service which crawls given url on the fly and input it to JSDOM to inspect DOM with jQuery. We see that this service consumes 90% of CPU [Expected]. The urls scraped are quite heavy in their html content and around ~100 req/sec... more »
|
|
Non-web always-blocking cpu-intensive high-memory node worker
|
| |
I'm new to node and I am investigating using node for a non-web
always-blocking cpu-intensive high-memory process. The process basically
runs in an infinitely loop, loading a lot of data from a datastore into
memory, applying complex (blocking) business logic, then saving the result
back to the store, and starting over again. It doesn't respond to... more »
|
|
|