Why Shipit? When I worked at Le Monde, our need was simple: deploy an application on multiple servers. For our PHP backend we used a self-made tool written in PHP to deploy them, but it had some flaws (no atomic deployment, no rollback, centralized configuration). For our fresh new node…
If like me, you are tired to create .gitignore in your node projects. Just do this: echo "node_modules/\nbower_components/" >> .gitignore You can also add in your ".bashrc" or in your ".zshrc" the alias: alias gitignore='echo "node_modules/\nbower_components/" >> .gitignore' Congratulations! You will…
If you know node, you probably know express. Express was originally coded by TJ Holowaychuk, one of the most active developer in the node.js community. Express is now the most common framework to make an http server in node.js. A good practice in express is to separate each…