|
Disclaimer:
These pages about different languages / apis / best practices were mostly jotted down quckily and rarely corrected afterwards. The languages / apis / best practices may have changed over time (e.g. the facebook api being a prime example), so what was documented as a good way to do something at the time might be outdated when you read it (some pages here are over 15 years old). Just as a reminder. Software developer notes about Node.jsDeveloper notes for Node.js
Getting SSL working for the serverFor testing, create your own .pem file:Create pem file For the server, as options, just pass the newly created pem file as both key and cert: var options = { key: fs.readFileSync('/tmp/your_own.pem'), cert: fs.readFileSync('/tmp/your_own.pem') }; jQuery-File-Upload and Node.jsUsing jQuery-File-Upload and my own Node.js server, these are some comments about it.IE9 giving "Error - Empty file upload result" but upload successfulMight be that you have cross-domain posts, the IE9 will use the iframe solution that will require redirect.see here for more info on it Modules and pathsnpmjs is what you need for installing modules and for figuring out what paths node.js looks in, you can set this in your shell:export NODE_DEBUG=module
More programming related pages |
|