[nodejs] Re: I have a big problem

2017-01-16 Thread John Kavanagh
if you are using Git (which you should) just log in to your linux server and clone the repo! you can route to it using nGinx or Apache On Thursday, January 12, 2017 at 4:56:47 AM UTC, GatsbyChao wrote: > > I have a big problem, how to deploy the reactjs project to the Linux > server? > > -- Jo

[nodejs] Re: Blob Data in SQL/Server

2017-01-16 Thread John Kavanagh
you just need to send the correct file-type header with the blob data On Monday, January 16, 2017 at 7:59:02 PM UTC, Grant MacDonald wrote: > > Hi folks. We have a Microsoft Access application that we are migrating to > a web based application with node.js on the backend. There are a few Blob

[nodejs] Blob Data in SQL/Server

2017-01-16 Thread Grant MacDonald
Hi folks. We have a Microsoft Access application that we are migrating to a web based application with node.js on the backend. There are a few Blob fields in the backend SQL/Server database that can be either PDF, JPG, MSG, etc. format. We are trying to figure out the best way to handle the b

Re: [nodejs] execve in node

2017-01-16 Thread Fedor Indutny
I'm not sure if it helps, but have you already tried child_process.spawnSync? On Mon, Jan 16, 2017 at 09:11 Daniel Risacher wrote: > I find deep irony in your answer, in that I was trying to rewrite a simple > script that I'd already written in perl with a nodejs version to eliminate > the perl

[nodejs] Pending image node js server

2017-01-16 Thread Wajdi Mnasri
I'm having problem with my phaser view, it seems that the image is always pending i'm trying to get the image from a static folder in the node js server, this is a screen and the code above can you help me please ? module.exports.GetImage = function(req,res){ var img_name = req.params.n

[nodejs] NodeJS C++ client node-firebird-libfbclient v.0.0.15 updated with Firebird events fixes

2017-01-16 Thread Adrian Marius Popa
Firebird C++ NodeJS module node-firebird-libfbclient updated with Firebird events fixes and VS2015 builds cleanup. https://github.com/xdenser/node-firebird-libfbclient/tree/v0.0.15 -- Job board: http://jobs.nodejs.org/ New group rules: https://gist.git

Re: [nodejs] execve in node

2017-01-16 Thread Daniel Risacher
I find deep irony in your answer, in that I was trying to rewrite a simple script that I'd already written in perl with a nodejs version to eliminate the perl dependency. On Thursday, January 12, 2017 at 9:53:38 AM UTC-5, Matt Sergeant wrote: > > No there's no equivalent to it, mostly because Wi

[nodejs] Re: Porting node module to v8

2017-01-16 Thread Christopher Mina
I've had success resolving circular dependencies in Node by exporting the declaration of the model in one of the dependents before invoking the circular reference. For instance *a.js* var b = require('./a'); module.exports = function() { var _b = new b(); _b.initialize(); }; *b.js