dev/prod tools for node.js

FacebookTwitter
node.js IDEs

http://howtonode.org/deploying-node-upstart-monit

Deploying Node.js With Upstart and Monit

Static Version So you like Node.js?
http://wiki.debian.org/LSBInitScripts/DependencyBasedBoot Translation(s) : none Debian was converted to order the boot sequence using the LSB fields in the header of each init.d script. This has removed several bugs in the former boot sequence, and now makes it easier to keep the sequence correct. Advantages Did you ever need to insert a init.d scripts Y before init.d scripts Z and after init.d script X, where both Z and X is started using boot sequence number 20 (as in 20X and 20Z)? Adding your script as 20Y would not cut it, because you need Z to start before X.

LSBInitScripts/DependencyBasedBoot

[ previous ] [ Contents ] [ 1 ] [ 2 ] [ 3 ] [ 4 ] [ 5 ] [ 6 ] [ 7 ] [ 8 ] [ 9 ] [ 10 ] [ 11 ] [ 12 ] [ A ] [ B ] [ C ] [ D ] [ E ] [ F ] [ G ] [ H ] [ next ] Services can be secured in a running system in two ways: Making them only accessible at the access points (interfaces) they need to be in. Configuring them properly so that they can only be used by legitimate users in an authorized manner. Restricting services so that they can only be accessed from a given place can be done by restricting access to them at the kernel (i.e. firewall) level, configure them to listen only on a given interface (some services might not provide this feature) or using some other methods, for example the Linux vserver patch (for 2.4.16) can be used to force processes to use only one interface. http://www.debian.org/doc/manuals/securing-debian-howto/ch-sec-services.en.html

Securing Debian Manual - Securing services running on your system

Your Debian / Ubuntu Linux box security depends upon access to system services (one of many aspects). http://www.cyberciti.biz/tips/how-to-controlling-access-to-linux-services.html

Ubuntu / Debian Linux: Services Configuration Tool to Start / Stop System Services

http://kvz.io/blog/2009/12/15/run-nodejs-as-a-service-on-ubuntu-karmic/

Run Node.js as a Service on Ubuntu

The core of our new project runs on Node.js . With Node you can write very fast JavaScript programs serverside. It’s pretty easy to install Node, code your program, and run it. But how do you make it run nicely in the background like a true server? and send your program to the background.
9.2.1. dh_make Most programs can be easily packaged using debhelper; especially when using dh_make to make an initial debian/ tree. dh_make requires the directory containing the source code to be named <packagename>-<version>, <packagename≶ being an all-lowercase string, possibly with digits and dashes. If the directory isn't named like this, it needs to be renamed first. When dh_make is run, it asks a single question about what class the package will be: http://www.wiggy.net/presentations/2001/DebianWalkThrough/handouts/handouts.html#AEN477

Debian for Developers Tutorial