Setup Yeoman in Windows PowerShell
1. Download Node.js and install it and make sure you have the npm package manager selected before the installation. 2. Open PowerShell and verify the npm installation. 3. Also verify if you have...
View ArticleUbuntu – Install Node Version Manager globally for all users
The Node Version Manager(nvm) could help you to manage multiple Node.js installations. The following steps are executed from root account. 1. Install the required packages. apt-get install...
View ArticleNode Version Manager – List available Node.js version
The following command can list out all the available Node.js version. nvm ls-remote Done =) Reference: GitHub – List all available node.js versions?Filed under: Web Development Tagged: Node Version...
View ArticleYeoman – Setup AngularJS and Foundation 5 with Sass
The generator-angular written by the Yeoman team comes with Bootstrap integration. But instead of using Bootstrap, i would like to use Foundation 5 with Sass. The following example is created under...
View ArticleStatsD – Installation and integration with Graphite
Previous: Install Graphite under pyenv virtualenv on Ubuntu - Compared to Graphite, installing StatsD server is just a piece of cake. 1. Install Node.js. For better management on Node.js, you could...
View ArticlePuppet – Run exec as a specific user
I would like to Puppet to install the node modules which is specified in the Node.js project package.json. But the Puppet agent is run under the root account while the project is owned by another Linux...
View ArticleNode.js – List all available versions of node package
npm view [package] versions For example, i would like to list the available version of the bootstrap-switch package. npm view bootstrap-switch versions Done =)Filed under: Web Development Tagged:...
View ArticleMeteor – Run shell command at server side
1. Install the fibres node package on the server. npm -g install fibres 2. Define the server methods in server.js. server/server.js Meteor.startup(function () { // Server methods Meteor.methods({...
View ArticleDrupal 7 – Setup Bootstrap 3 Theme with Gulp for LESS compilation
Got a new responsive site freelance and i would like to try Bootstrap 3 theme in Drupal 7. A little bit confused at the very beginning because the theme has a lot of features and bug fixes ongoing. So...
View Article