[nodejs] Re: Calling R script from nodejs using r-script

2016-10-21 Thread CESAR BASURTO
I have the same problem. El lunes, 5 de septiembre de 2016, 14:19:30 (UTC-5), Amrita Ray escribió: > > I am trying to call some R scripts from nodejs. I found out from the net > that a simple npm module called r-script is all I need to do this. I > installed it and then wrote this simple

[nodejs] Memory leak issues with node JS

2016-10-21 Thread Dhiraj Agni
Technology : Electron with Node JS and SQLite 3. Kendo grid with Java Script is being used for displaying the records. Issue: Memory leak issues with node JS, due to which application crashes. This issues usually occurs when we rebind the grid multiple time or navigate through the pages.

[nodejs] nodemailer issue..

2016-10-21 Thread Jayachandran Kandasamy
Hi folks, I am using nodemailer API for my nodejs app, but file attachment options of this api is not working as expected - if i attach any file along with the email from server side .. recipients are receiving only corrupted files, is there any solution available ? if any alternative method

[nodejs] Firebird C++ NodeJS module updated with support for Node 4.x/6.x

2016-10-21 Thread Adrian Marius Popa
Firebird C++ NodeJS (v 0.0.14) module is now updated with support for Node 4.x/6.x https://www.npmjs.com/package/firebird -- Job board: http://jobs.nodejs.org/ New group rules: https://gist.github.com/othiym23/9886289#file-moderation-policy-md Old group rules:

Re: [nodejs] JAR like format for nodejs

2016-10-21 Thread Jeremy Darling
Since you can overload the way that Require works you don't actually need a "change" to Node you can just add in your own loader, as an example here is a very simple YAML loader: const fs = require('fs'); const yaml = require('js-yaml'); require.extensions['.yaml'] = require.extensions['.yml'] =

[nodejs] Re: Own admin panel - what tools needed?

2016-10-21 Thread Nathanaël Lamellière
Hi Maciej, A late reply on this. Have you had a look at the API-based CMS options? I work at prismic.io (one of the those) and I see lots of developers using it just just for that: having a simple admin panel just for the content management. Here is a blog sample working with Node.js and

[nodejs] Re: JAR like format for nodejs

2016-10-21 Thread Daniel Lo Nigro
I'd like to have something like this as well. In the meantime, the closest thing you can get is probably combining and minifying all your JavaScript. If you combine your app into a single .js file using a tool such as Webpack, it avoids the need to deploy the node_modules directory (assuming

Re: [nodejs] JAR like format for nodejs

2016-10-21 Thread Alain Mouette
You could try Npm dedupe - Alain Mouette A 13 de outubro de 2016 11:44:06 Jan Flyborg escreveu: Hi, I am wondering if there are any plans to change the module system of nodejs to make it able to import modules from a single archive (much like Java's jar which