[nodejs] Does or will Node.js support HTTP v2.0 or SPDY ?

2012-12-30 Thread Aaron Gray
Does or will Node.js support HTTP v2.0 or SPDY ? http://en.wikipedia.org/wiki/HTTP_2.0 http://en.wikipedia.org/wiki/SPDY http://dev.chromium.org/spdy/spdy-whitepaper http://tools.ietf.org/html/draft-mbelshe-httpbis-spdy-00 Aaron -- Job Board: http://jobs.nodejs.org/ Posting gui

Re: [nodejs] Does or will Node.js support HTTP v2.0 or SPDY ?

2012-12-30 Thread Aaron Gray
On 30 December 2012 19:41, yogesh agrawal wrote: > https://github.com/indutny/node-spdy > > check this module. > Nice, cheers ! Aaron > > > On Mon, Dec 31, 2012 at 1:03 AM, Aaron Gray wrote: > >> Does or will Node.js support HTTP v2.0 or SPDY ? >> >>

Re: [nodejs] Re: Does or will Node.js support HTTP v2.0 or SPDY ?

2012-12-30 Thread Aaron Gray
On 30 December 2012 19:44, Thomas Shinnick wrote: > Have you asked Google? > https://www.google.com/search?q=node%20spdy > Now I'm sure some of the first 20 hits are duplicates, but the first hit > is for > https://github.com/indutny/node-spdy > for creating SPDY servers and several of th

Re: [nodejs] Node2Blog - A blog engine in node.js

2013-01-03 Thread Aaron Gray
On 3 January 2013 21:26, Jared Wright wrote: > I made this blog template to experiment with node.js and my personal > website. If anyone's interested in the project you're welcome to get a copy > or perhaps contribute if you'd like. Tell me what you think. Interested maybe, where's the link ?

[nodejs] Minify Broken

2013-07-02 Thread Aaron Gray
Hi, minify seems to be broken on npm :- C:\>npm i minify npm http GET https://registry.npmjs.org/minify npm http 304 https://registry.npmjs.org/minify npm http GET https://registry.npmjs.org/uglify-js/2.2.5 npm http GET https://registry.npmjs.org/clean-css/1.0.1 npm http GET https://registry.npmj

[nodejs] Re: Minify Broken

2013-07-02 Thread Aaron Gray
odule.runMain (module.js:497:10) at startup (node.js:119:16) at node.js:901:3 On 2 July 2013 17:49, Aaron Gray wrote: > Hi, > > minify seems to be broken on npm :- > > C:\>npm i minify > npm http GET https://registry.npmjs.org/minify > npm http 304 https://registry.

Re: [nodejs] Re: Minify Broken

2013-07-02 Thread Aaron Gray
Sorry disregards this - I don't know what I am doing ! -- -- Job Board: http://jobs.nodejs.org/ Posting guidelines: https://github.com/joyent/node/wiki/Mailing-List-Posting-Guidelines You received this message because you are subscribed to the Google Groups "nodejs" group. To post to this group

[nodejs] Node.js confusion

2013-07-10 Thread Aaron Gray
Hi, I have installed the latest Node.js v0.10.13 tried both x86 and 64bit. Tried the most basic code from the Node.js web site front page :- var http = require('http'); http.createServer(function (req, res) { res.writeHead(200, {'Content-Type': 'text/plain'}); res.end('Hello World\n'); }).lis

[nodejs] Re: Node.js confusion

2013-07-10 Thread Aaron Gray
Sorry for the noise it was a Unicode problem with my editor ! On 11 July 2013 00:41, Aaron Gray wrote: > Hi, > > I have installed the latest Node.js v0.10.13 tried both x86 and 64bit. > Tried the most basic code from the Node.js web site front page :- > > var ht

Re: [nodejs] node-struct

2012-09-09 Thread Aaron Gray
On 5 September 2012 06:09, rhasson wrote: > Nate, > > ... > var ffi = require('ffi'); > var ref = require('ref'); > var Struct = require('ref-struct'); > Where does the ref module come from please ? Many thanks, Aaron -- Job Board: http://jobs.nodejs.org/ Posting guidelines: https://githu

Re: [nodejs] node-struct

2012-09-09 Thread Aaron Gray
On 9 September 2012 19:53, Nathan Rajlich wrote: > Aaron, see http://tootallnate.github.com/ref Cheers, nice code, have to check it out properly, looks like it will do what I need nicely from a quick scan through. Aaron -- Job Board: http://jobs.nodejs.org/ Posting guidelines: https://githu

Re: [nodejs] How to set up a Node.js server to work with PHP?

2012-12-13 Thread Aaron Gray
On 13 December 2012 10:00, Angel Java Lopez wrote: > Hi! > > I don't know the status of the project, or better alternatives, but you > could use: > > https://github.com/substack/dnode > with a PHP client > https://github.com/bergie/dnode-php > > If you need more flexibility, I think it is easy to

[nodejs] looking at range of virtual hosting solutions for Node.js

2012-12-14 Thread Aaron Gray
I am looking for virtual hosting software for Node.js. Have found :- https://github.com/kommander/vost http://www.senchalabs.org/connect/ So far. vost is a bit too basic and 'connect' seems to have a non MIT license which rules it out for my usage. Aaron -- Job Board: http://jobs.node

[nodejs] Re: looking at range of virtual hosting solutions for Node.js

2012-12-14 Thread Aaron Gray
On 14 December 2012 20:10, Aaron Gray wrote: > I am looking for virtual hosting software for Node.js. > > Have found :- > > https://github.com/kommander/vost > http://www.senchalabs.org/connect/ > > So far. vost is a bit too basic and 'connect' seems

Re: [nodejs] Re: MS Windows API bindings

2012-07-09 Thread Aaron Gray
Okay my fall back is to generate C binding code using jison and a bit of templated C generation if it is at all possible. AFAICS it would be relatively easy to put together, and would be useful for creating other C interfaces. Types such as Windows HANDLES - HWND, etc and other types are the only

Re: [nodejs] MS Windows API bindings

2012-07-09 Thread Aaron Gray
On 10 July 2012 00:36, Brandon Benvie wrote: > Not quite functionl but pretty close; https://gist.github.com/2879370 Brandon, Ah great. What is its status ? Aaron -- Job Board: http://jobs.nodejs.org/ Posting guidelines: https://github.com/joyent/node/wiki/Mailing-List-Posting-Guidelines Yo

Re: [nodejs] MS Windows API bindings

2012-07-09 Thread Aaron Gray
On 10 July 2012 00:38, Brandon Benvie wrote: > And example smaller scale implementation of the functions can be seen here, > for bindings to the registry API: > https://github.com/Benvie/node-Windows/blob/ffi-registry/lib/bindings-registry.js Wow, nice ! Thanks, Aaron -- Job Board: http://job

Re: [nodejs] Re: Any X WIndows bindngs for Node.js ?

2012-07-10 Thread Aaron Gray
On 11 July 2012 00:27, Andrey wrote: > http://github.com/sidorares/node-x11 - native javascript, zero dependency X > client. > Implements core X11 protocol (not fully yet), and some extensions - render, > damage, composite, apple-wm, screensaver, xtest, shape, xc-misc. I have > simple window manag

[nodejs] JavaScript and Node Programmers needed for social projects

2014-01-13 Thread Aaron Gray
Hi, I am looking for Open Source programmers who want to work on a number of social projects using Node.js and JavaScript frontends. I need both architecture and infrastructure engineering programmers as well as user interface programmers. I am looking to find people to prototype ideas in in lie

[nodejs] [npm] scripts - npm cache clean -> bower cache clean

2015-02-01 Thread Aaron Gray
Hi I have a :- "scripts": { "install": "cd public && bower install" } I wanted a :- "scripts": { ... "cache.clean": "cd public && bower cache clean" }, but cannot work out how to specify it if it is allowed ? any thanks in advance, Aaron -- Job board: http://jobs.nodejs

Re: [nodejs] [npm] scripts - npm cache clean -> bower cache clean

2015-02-01 Thread Aaron Gray
Thanks I was confusing clearing the cache with clearing out / deleteing all node_modules and bower_component directories. On 1 February 2015 at 23:16, Aria Stewart wrote: > >> On 1 Feb 2015, at 17:50, Aaron Gray wrote: >> >> Hi I have a :- >> >> "s

[nodejs] How do you "uninstall" / delete node_modules from NPM ?

2015-02-03 Thread Aaron Gray
Hi, I want a standard way I can delete node_modules directory. npm uninstall just gives me the message :- npm WARN uninstall not installed in C:\Users\Aaron\github\template-node-marionet te-app\node_modules: "template-node-marionette-app" Help ! Aaron -- Job board: http://jobs.nodejs.org/

Re: [nodejs] How do you "uninstall" / delete node_modules from NPM ?

2015-02-04 Thread Aaron Gray
It would be nice to have a command to do it and also allow script to delete bower_components as well. On 4 February 2015 at 00:42, Ryan Schmidt wrote: > > On Feb 3, 2015, at 2:48 PM, Aaron Gray wrote: > >> I want a standard way I can delete node_modules directory. npm >> un

Re: [nodejs] How do you "uninstall" / delete node_modules from NPM ?

2015-02-04 Thread Aaron Gray
may well use that. On 4 February 2015 at 16:04, Aria Stewart wrote: > >> On Feb 4, 2015, at 10:22 AM, Aaron Gray wrote: >> >> It would be nice to have a command to do it and also allow script to >> delete bower_components as well. > > like: > > npm

[nodejs] local npm server or git repo server

2015-03-03 Thread Aaron Gray
Hi, I have two possible requirements :- 1) A local NPM server that I can run on my Windows machine without needing to download and store all NPM packages, that will allow me to override specific packages with my own GitHub packages. or 2) The ability to refer to either GitHub or local packages

[nodejs] Setting node/npm global environment variable

2015-04-15 Thread Aaron Gray
Hi, I need to enable harmony globally (within exec environment space) for node.js I don't want to have to use io.js though ! Basically I want something like :- NODE=--harmony I have .sh scripts reinvoking 'node' in compoentjs/component-install and its loosing the --harmony flags and I canno

Re: [nodejs] Setting node/npm global environment variable

2015-04-15 Thread Aaron Gray
On 15 April 2015 at 14:06, Ryan Schmidt wrote: > > On Apr 15, 2015, at 4:35 AM, Aaron Gray wrote: > >> I need to enable harmony globally (within exec environment space) for >> node.js I don't want to have to use io.js though ! > > I don't think node currently

Re: [nodejs] Re: Nodejs written in Rust?

2015-04-15 Thread Aaron Gray
Reason, point of ? On 4 April 2015 at 12:05, Alexey Petrushin wrote: > Not really, one of ideas behind Rust is easy concurrent programming, would > be interesting to see something like Actors or Erlang like. > > On Saturday, 4 April 2015 11:14:31 UTC+11, Johnin wrote: >> >> If considering reimpl

Re: [nodejs] Re: Nodejs written in Rust?

2015-04-27 Thread Aaron Gray
Whats going on with V8 modules with C++ name mangling and Rust ? On 16 April 2015 at 08:21, Alex wrote: > I suppose you could do inter language modules via Emscripten llvm backend. If > it compiles to asm.js, the ownership semantics in Rust may or may not > translate to lighter memory requireme

[nodejs] Seeking second opinion and advice on 'req.domains' problem - possible node.js bug

2015-07-10 Thread Aaron Gray
Hi, I have found a bug possibly in node.js itself it manifests in 'req.domains' not being setup correctly AFAICT. I have forked 'express-subdoamin' and added tests which demonstrate the problem. https://github.com/AaronNGray/express-subdomain There is a 'debug' branch too that just prints o

Re: [nodejs] Seeking second opinion and advice on 'req.domains' problem - possible node.js bug

2015-07-10 Thread Aaron Gray
e domain is X.Y, there > is a setting for that: > - 'subdomain offset', which defaults to 2 > - http://expressjs.com/api.html#app.settings.table > > If that's not what the bug you're seeing is, could you elaborate? > > ~Ryan > > On Fri, 10 Jul 2015

[nodejs] RSA Crypto ?

2015-07-15 Thread Aaron Gray
Hi, Does native node.js have RSA encryption functions at all ? I did a :- var ciphers = crypto.getCiphers(); but only get :- [ 'CAST-cbc', 'aes-128-cbc', 'aes-128-cbc-hmac-sha1', 'aes-128-cfb', 'aes-128-cfb1', 'aes-128-cfb8', 'aes-128-ctr', 'aes-128-ecb', 'aes-128-gcm', '

[nodejs] File Access Permissions and Security of Node.js apps on Linux

2016-01-03 Thread Aaron Gray
Hi, A friend asked me a question I was very embarrassed not to be able to answer. Basically he could not find any information on both deploying Node.js app in regard to setting file permissions and on protecting the filing system from Node.js applications. There seems to be no guides to these matt

[nodejs] Re: My initial release of a new language that compiles to JS

2016-01-03 Thread Aaron Gray
On Friday, 1 January 2016 22:41:02 UTC, Zhenzhen Zhan wrote: > > It's called FutureScript . It aims to be more > consistent, more radical but more readable. Many new concepts are > introduced. See: > > http://futurescript.org/ > Well that's a sure fire way to confuse th

[nodejs] cannot get node dns program to work externally

2017-08-07 Thread Aaron Gray
/master/examples/forwarder.js for testing. Its probably something obvious hope someone can help ! -- Aaron Gray Independent Open Source Software Engineer, Computer Language Researcher, Information Theorist, and amateur computer scientist. -- Job board: http://jobs.nodejs.org/ New group rules

Re: [nodejs] Re: cannot get node dns program to work externally

2017-08-20 Thread Aaron Gray
ce=+ep /usr/bin/nodejs >> >> to allow node to work with ports less than 1024. >> >> I have my node dns program working on port 53 UDP with dig from localhost >> but Basically not externally on the local network and cannot work out why ? >> >> I have mainly been u

[nodejs] Re: The Node.js Master Class

2018-05-27 Thread Aaron Gray
Hi, Anyone seen this, and does anyone rate it at all ??? https://pirple.thinkific.com/courses/the-nodejs-master-class Regards, Aaron -- Aaron Gray Independent Open Source Software Engineer, Computer Language Researcher, Information Theorist, and amateur computer scientist. -- Job

[nodejs] Printing out structures that contain functions

2019-01-28 Thread Aaron Gray
the console and also as a text file. Regards, Aaron -- Aaron Gray Independent Open Source Software Engineer, Computer Language Researcher, Information Theorist, and amateur computer scientist. -- Job board: http://jobs.nodejs.org/ New group rules: https://gist.github.com/othiym23/9886289#file-

Re: [nodejs] Printing out structures that contain functions

2019-01-28 Thread Aaron Gray
> generally useful as you might hope. > Hopefully I am not worried about closures though I will have to check my usecase's code out as its a third party library. I have found Function.toString() works for functions so will just write a serialized as you suggest. Many thanks, Aaron > O

Re: [nodejs] Printing out structures that contain functions

2019-01-28 Thread Aaron Gray
Oh this closure issue is really annoying ! Is there any way it can be fixed ? Shall I raise an issue ? Aaron On Mon, 28 Jan 2019 at 20:26, Aaron Gray wrote: > On Mon, 28 Jan 2019 at 20:19, Forrest Norvell wrote: > >> You’re going to need to write a custom serialize

[nodejs] Re: Problems with correctly downloading Excel .xlsx spreadsheet file

2020-04-04 Thread Aaron Gray
Solved On Thu, 2 Apr 2020 at 14:08, Aaron Gray wrote: > > I am having issues downloading an Excel spreadsheet using node-fetch. It > appears to be a compression issue. I am probably doing something stupid, but > cannot work out what. > > Here's the example code :- >

[nodejs] Problems with correctly downloading Excel .xlsx spreadsheet file

2020-04-04 Thread Aaron Gray
ok at headers :- https://github.com/AaronNGray/xlsx-proxy-test Both the above proxy and CURL work fine on this. I have been having probels with dealing with downloading and proxying other compressed data in the past. Hoping someone can sort this out please ! -- Aaron Gray Independent Open S