May be, this one https://github.com/maritz/nohm?
I partially use Redback, because it provides a couple of nice additional
structures. IMHO, that's not ORM, but very nice library.
вторник, 30 октября 2012 г., 7:50:15 UTC+4 пользователь Angelo Chen написал:
>
> Hi,
>
> have used Redis in a project
Redback is good: http://redbackjs.com/ .
Cheers,
Nicholas
On Tuesday, October 30, 2012 2:50:15 PM UTC+11, Angelo Chen wrote:
>
> Hi,
>
> have used Redis in a project, now like to save time by using an ORM for
> redis in another project, any suggestions? thanks.
>
> Angelo
>
--
Job Board: http:
Nothing on purpose. Can you share the test that got slow?
On Mon, Oct 29, 2012 at 6:03 PM, Elliot wrote:
> Is there something that would have increased the compilation or run time in
> 0.8.13 or 0.8.14?
>
> Switching from 0.8.12 to 0.8.14 increased my app's spec suite time from
> ~1.8sec to ~4.
same approach worked well in full node server app
> Statistical profiling result from v8-trimmed.log, (183523 ticks, 190
unaccounted, 0 excluded).
This was after trimming 3 minutes of warmup followed by 3 minutes of
"profiled" code after the call to getGMTString() using the below trimming
appr
On Oct 29, 11:47 pm, NodeNinja wrote:
> Since I am doing this on a Windows system What cross compiler would you
> recommend to target Unix/Linux, gcc or MinGW?
I recommend setting up and using a local Linux virtual machine if you
do not have access to a Linux system elsewhere.
You might be able
Thanks a lot...!!
I'll look at both for better understanding of node..
On Tue, Oct 30, 2012 at 3:24 AM, Yoshihiro Kikuchi wrote:
> I'd recommend two ebooks for you.
>
> One is 'Smashing Node.js', which is the best (I think) book for beginners.
> This book covers wide area in Node.
>
> The othe
Hi,
have used Redis in a project, now like to save time by using an ORM for
redis in another project, any suggestions? thanks.
Angelo
--
Job Board: http://jobs.nodejs.org/
Posting guidelines:
https://github.com/joyent/node/wiki/Mailing-List-Posting-Guidelines
You received this message because
> No. You need to run the node-gyp configure/build cycle once for each
> platform that you target. Here is how you approximately would script
> that on a UNIX system:
>
> That was great news Ben,
Since I am doing this on a Windows system What cross compiler would you
recommend to target
Is that the original non-optimized prototype or more optimized iteration of
it?
On Mon, Oct 29, 2012 at 5:42 PM, Rick Waldron wrote:
> Related... v8 just landed support for Object.observe()
>
> -Rick
>
> On Monday, October 29, 2012 at 8:11 PM, Azer Koçulu wrote:
>
> Hi All,
>
> I've created a new
Is there something that would have increased the compilation or run time in
0.8.13 or 0.8.14?
Switching from 0.8.12 to 0.8.14 increased my app's spec suite time from
~1.8sec to ~4.8sec
--
Job Board: http://jobs.nodejs.org/
Posting guidelines:
https://github.com/joyent/node/wiki/Mailing-List-Pos
Related... v8 just landed support for Object.observe()
-Rick
On Monday, October 29, 2012 at 8:11 PM, Azer Koçulu wrote:
> Hi All,
> I've created a new JS library for defining properties that can be subscribed
> for updates and can interact with eachother.
> Check it here;
> https://github.co
Correct...
I took a closer look at the binaries -- besides libssl, libz, & libv8, the
node in the Raspbian repository also linked to the
shared ld-linux-armhf, libcares, libcrypto, libev, libutil libraries.
On Monday, October 29, 2012 1:14:42 PM UTC-7, Nathan Rajlich wrote:
>
> If you mean "5mb
Easy enough, many thanks!
(note to self, process.config is only available for v0.7.7 and higher)
On Monday, October 29, 2012 12:29:16 PM UTC-7, Ben Noordhuis wrote:
>
> On Mon, Oct 29, 2012 at 7:21 PM, Mike >
> wrote:
> > Given a node binary, any easy way of determining what options were
> pass
Hi All,
I've created a new JS library for defining properties that can be
subscribed for updates and can interact with eachother.
Check it here;
https://github.com/azer/ak47
Readme contains many examples. Here is another one:
var user = ak47({ name: 'joe', 'birthdate': 21 });
> user.name()
"j
Dude, -1. Nobody wants an unnecessary fork of node. Extract the code
so it can be used as a proper external module and I guarantee you'll
get more adoption.
On Mon, Oct 29, 2012 at 4:45 PM, tom wrote:
> I will distribute the binary release for easy usage in short term.
>
> best regards
> Tom
>
I will distribute the binary release for easy usage in short term.
best regards
Tom
On Monday, October 29, 2012 4:19:41 PM UTC+8, Dean Mao wrote:
>
> hopefully it's a big plan then... I don't think i'm going to recompile
> node just to try this out :-P
>
>
> On Mon, Oct 29, 2012 at 1:03 AM, t
I'd recommend two ebooks for you.
One is 'Smashing Node.js', which is the best (I think) book for beginners.
This book covers wide area in Node.
The other is 'Node.js in Action' if you want to use Express framework to develop
web applications.
This book has not released yet but you can get MEAP(E
Ben,
Thanks for driving this.
To likely confirm what you already know, I did the following and it
"worked". I profiled without lazy start (--prof) and put a call to new
Date().toGMTString() right where I would have called profiler.resume(). I
did this knowing that toGMTString isn't called at
I'd like to announce Passbookster.
Passbookster allows you to create iOS passbook passes. It provides both
a stream and callback API. Great care has been taken on performance.
Node crypto module does not currently support PKCS#7 signing, so openssl
is spawned internally, but a PR to add this func
If you mean "5mb larger than the one in the Raspbian repository" then
I'd guess it's cause they're linking to a shared OpenSSL and zlib
(maybe even V8), whereas when you compile it manually those get
statically linked to the node binary (resulting in a larger size due
to the additional symbols).
O
On Mon, Oct 29, 2012 at 7:21 PM, Mike wrote:
> Given a node binary, any easy way of determining what options were passed to
> ./configure when the binary was built?
Yes, for certain values of 'easy'.
$ node -pe process.config
{ target_defaults:
{ cflags: [],
default_configuration: 'Relea
Given a node binary, any easy way of determining what options were passed
to ./configure when the binary was built?
Background: I just cross compiled node.js (v0.8.14) for the Raspberry Pi
and was surprised to find the binary was 5X larger (after being stripped).
I just wondering about the size
Thanks for answer Bert!
I know, Isaac is :-) Good tip, however I don´t want a REPL there anyway so
I have completely removed it, or to be exactly just wrote a return
statement as first statement in the setupRepl. Minimal effort required :-)
Den söndagen den 28:e oktober 2012 kl. 19:11:48
thank you
On Sunday, October 28, 2012 10:22:02 AM UTC+2, paddybyers wrote:
>
> Hi,
>
> i want to run node js \ v8 like any other android app. just download apk
>> and run. but in this case we'll never have direct access to the hardware.
>> and if we root the device then we'll have some other pro
Just deployed the '::' on an EC2 instance; which doesn't have access to the
world via IPv6. The service responded normally. So I would say that on
machines that support IPv6, '::' is a better solution than '0.0.0.0'. What
does anyone else think?
On Saturday, October 27, 2012 2:59:41 PM UTC-7, T
We use Schoon's Shuttle at RedRobot, and it's been working out perfectly as
a drop-in replacement for hook.io with dramatic performance increases. It
uses msgpack and 0mq. Definitely check it out if you're wanting to go the
0mq route. Otherwise, Engine.io looks promising, though I've never used it.
Tom, it is do-able (albeit undocumented) to hook into *which* stream
the Node "http" module uses. See my node-icecast Client class[0] for
an example. You should be able to return one of your "udt" streams in
the createConnection function and then the core "http" module would
use that.
This way you
Did you mean command strace -c -e "gettimeofday,clock_gettime" node 3.js ?
Old (on a more powerful desktop pc):
PID USER PR NI VIRT RES SHR S %CPU %MEMTIME+ COMMAND
13220 wicked20 0 2104 508 428 S 66 0.0 7:46.70 strace
13221 wicked20 0
Internally at cloud9, we use the smith protocol. It's based on the
same idea of dnode, but has restricted abilities so that it can be
leak-proof using normal javascript (dnode requires --harmony to
prevent leaks) and very fast. We usually use the protocol over
msgpack + tcp between servers (or ov
That isn't necessarily true. I got those Trap Abort exceptions for my own
native extension module only when I used the fs module. There's probably
something in the fs module that causes bugs like these to pop up more, but
when I fixed my bug properly, using fs did not cause any issues. My guess
On Sat, Oct 27, 2012 at 4:23 AM, Andrew Spyker wrote:
> Attached is a third zip of logs based on both patches (and using --log). I
> assume the logs help you validate which ticks are coming back as unresolved.
>
> The second patch doesn't seem to help much more than the first. Still
> hovering a
On Mon, Oct 29, 2012 at 6:15 AM, Alexey Kupershtokh
wrote:
> I've found an extreme solution:
>
> I upgraded ubuntu from
> Ubuntu 12.04.1 LTS \n \l;
> Linux wnote 3.2.0-33-generic-pae #52-Ubuntu SMP Thu Oct 18 16:39:21 UTC 2012
> i686 i686 i386 GNU/Linux
> to
> Ubuntu 12.10 \n \l;
> Linux wnote 3.5
On Mon, Oct 29, 2012 at 4:30 AM, NodeNinja wrote:
>
> On Sunday, October 28, 2012 11:07:48 PM UTC+5:30, mscdex wrote:
>>
>> On Oct 28, 1:15 pm, NodeNinja wrote:
>> > and was wondering if there was anyway to target multiple platforms?
>>
>> Sure, you can target multiple platforms in your binding.g
On Sat, Oct 27, 2012 at 9:55 PM, Henri Tuhola wrote:
> I'd need to pass some binary data out of an addon, but node.js addon
> documentation doesn't seem to cover it.
>
> This is what I'm working on: https://github.com/cheery/node-video
>
> node-video needs the buffer objects to provide composite/n
On Sun, Oct 28, 2012 at 4:02 AM, P. Douglas Reeder wrote:
> One of the things my app needs to do is write a large JSON file to disk.
> Currently, it's implemented naively:
>
> writeStream = fs.createWriteStream(process.cwd() + "/staticRoot/album.json",
> {"encoding": "utf8"});
>
> writeStream.addL
On Sun, Oct 28, 2012 at 4:52 AM, NodeNinja wrote:
> Ben, Thanks for the code snippet is an array of pointers also created in the
> same style?
Depends on what you mean by 'pointer'. JS the language doesn't have a
concept of pointers. V8 lets you store pointers with
v8::Object::SetPointerInInter
On Mon, Oct 29, 2012 at 10:33 AM, Karl Böhlmark wrote:
> I haven't yet researched this further however I'd like to add that I think
> this started happening when I added file watcher functionality, so that adds
> to the suspicion that it is a bug in fs.watch/watchFile.
> I'll get a backtrace.
At
Express middlewares are called in the order you define them.
The static middleware will call the next middleware only if it failed
serving the static resource.
You need basicAuth before static.
danmilon.
On 10/29/2012 12:41 AM, gng wrote:
> Hi all,
>
> Sorry to appear dumb about this, but no am
I haven't yet researched this further however I'd like to add that I think
this started happening when I added file watcher functionality, so that
adds to the suspicion that it is a bug in fs.watch/watchFile.
I'll get a backtrace.
On Wednesday, October 24, 2012 4:31:37 PM UTC+2, Ben Noordhuis w
hopefully it's a big plan then... I don't think i'm going to recompile
node just to try this out :-P
On Mon, Oct 29, 2012 at 1:03 AM, tom wrote:
> Making HTTPP as module or rewrite it in pure JS is a plan.
>
> Best regards
> tom
>
>
> On Sunday, October 28, 2012 1:00:42 AM UTC+8, Nathan Rajl
Making HTTPP as module or rewrite it in pure JS is a plan.
Best regards
tom
On Sunday, October 28, 2012 1:00:42 AM UTC+8, Nathan Rajlich wrote:
>
> Sounds pretty cool. How come you did it as a fork of node rather than
> an external module?
>
> On Sat, Oct 27, 2012 at 5:45 AM, tom >
> wrote
Thank you all for giving your suggestions..!!
On Thursday, October 4, 2012 1:58:41 PM UTC+5:30, Diogo Resende wrote:
>
> If you're a bit familiar with js in general, I would advise you to read
> the documentation pages. It's not that big and you'll get a picture of what
> you can do with the co
42 matches
Mail list logo