Express is a simple web application framework for building hybrid web applications. You can render web pages, generate customized responses and create user-friendly APIs quickly with ease. It just fits the trade with Node.js. This post covers the installation and hello world example: Installation: buntu@ubuntu:~$ sudo npm install express express@3.1.0 node_modules/express ├── methods@0.0.1 ├── fresh@0.1.0 … Continue reading Express for Node.js
Tag: npm
Installing Node.js on Ubuntu
I would continue explaining more about Node.js, but for all those folks who do things and understand them, here's the way to install Node.js on Ubuntu machines.. You need to first install necessary packages like git-core and libssl-dev sudo apt-get update sudo apt-get install g++ curl libssl-dev apache2-utils sudo apt-get install git-core Download the latest … Continue reading Installing Node.js on Ubuntu