[nodejs] How to parse email on haraka ?

2015-01-11 Thread Arman Ortega
Hi guys, Ive been exploring the haraka(node.js smtp server) and Ive successfully install it on my linux machine. I'm wondering if there is a good tutorial on parsing an email using haraka. Ive check on the manual but I couldn't find it. Any ideas/suggestions on how to do that would greatly apprec

Re: [nodejs] Data Model Definition Standard in JavaScript/Node

2015-01-11 Thread Matt
If you do that you probably lose some of the performance enhancements V8 does by converting things internally to classes. On Sat, Jan 10, 2015 at 8:39 PM, Alexander Praetorius wrote: > Many people use *"this"*, *"prototype"* and *"new"*, like: > > >> *module.exports = function Car (name, cost, m

Re: [nodejs] what is wrong here ?

2015-01-11 Thread Forrest Norvell
What command line are you using? What happens when you add console.log statements saying what values you’re going to pass to each of the library calls you make? (You should use path.resolve or path.join instead of filename = __dirname + argv[3] — __dirname doesn’t come with a trailing slash, among

Re: [nodejs] What happened to 0.11.15?

2015-01-11 Thread Forrest Norvell
On Sat, Jan 10, 2015 at 8:59 AM, Ekin Koc wrote: > Any idea what's the hold up on 0.12 release? > As far as I understand it, there was a plan to include a refreshed TLS certificate bundle in 0.11.15, but it was incompatible with several of Google and / or AWS's certificates, so that stalled the

Re: [nodejs] Data Model Definition Standard in JavaScript/Node

2015-01-11 Thread Alexander Praetorius
Many people use *"this"*, *"prototype"* and *"new"*, like: > *module.exports = function Car (name, cost, mpg, alternative) {* > * this.name = name;* > * this.cost = cost;* > * this.env_damage = mpg;* > * this.alternative = alternative;* > *};* > *Car.prototype.appeal = fun

Re: [nodejs] Unhandled errors treatment in firebase-node

2015-01-11 Thread Forrest Norvell
You typically see code like this in streaming parsers, where you want to do all of the processing for a chunk of data before emitting any errors so as not to lose your place in the stream (node-redis does something very similar). I also believe (although I’m not entirely sure) that most of the Fire

[nodejs] Re: What happened to 0.11.15?

2015-01-11 Thread itsnotvalid
I am waiting for any new releases for the v0.11 branch as well. This has been almost a month since then. Thanks. On Sunday, January 11, 2015 at 12:59:13 AM UTC+8, Ekin Koc wrote: > > Just curious, > > It was stated in this tweet > https://twitter.com/nodejs/status/545349270241435648 that v0.11.1

Re: [nodejs] Re: Payment Gateway / Card Processing

2015-01-11 Thread Angel Java Lopez
Loosely related http://www.businessinsider.com/the-payments-industry-explained-2014-12 Angel "Java" Lopez @ajlopez On Wed, Jan 7, 2015 at 3:42 PM, Carlos Carcamo wrote: > Thanks Angel, mango looks great, do you know any other that operates on > latin america? > I would like to compare options

Re: [nodejs] Unhandled errors treatment in firebase-node

2015-01-11 Thread Ryan Graham
I'm grasping at straws here.. It is possible the intention was to make the exception uncatchable, suggesting the authors felt it is inappropriate to attempt to recover from the problem. ~Ryan On Sat, Jan 10, 2015, 6:48 AM Kirill Slatin wrote: > Humbly asking someone to explain to me what the a

[nodejs] what is wrong here ?

2015-01-11 Thread Roelof Wobben
I try to make a exercise of nodeschool.io but I cannot make it work. I have this : var http = require ('http'); var fs = require('fs') http.createServer(function(req, res) { var filename = __dirname+ process.argv[3] var readStream = fs.createReadStream(filename); readStream.on('open'

Re: [nodejs] What happened to 0.11.15?

2015-01-11 Thread Luiz Filipe
19th December, huh? This seems like a marriage, the bride decides the day and the month. The year will be defined by the groom... Em Sáb, 10 de jan de 2015 2:39 PM, Ekin Koc escreveu: -- Job board: http://jobs.nodejs.org/ New group rules: https://gist.github.com/othiym23/9886289#file-moderat

[nodejs] [ANN] Quiver.js - Middleware-based Component Framework

2015-01-11 Thread Soares Chen
Hi everyone, I would like to share with you a new project that I have been working alone for two years. Quiver.js is a component framework for creating composable and easy to maintain Node.js applications. Quiver is made of many layers of architecture con