Node.js and Express

来源:互联网 发布:11年体测数据 编辑:程序博客网 时间:2024/05/17 17:41

Creating a basic site with Node.js and Express

A walkthrough on how to create and deploy a basic site with Node.js and the Express framework

Estimated reading time: 7 minutes

Table of contents

    • What we are going to do
    • Setup
    • Prerequisites
    • Create an Express site
    • Boot the app
    • Using Git
    • Developing Node.js sites
    • HTML in Express
    • CSS in Express
    • Routing in Express
    • Publishing your site
    • Conclusion
    • Further reading

What we are going to do

This walkthrough will go over setting up a basic site using Node.js and Express. The walkthrough is aimed at beginners exploring Node.js as I’ve had many questions from friends and colleagues about creating and deploying node apps. If you are not a beginner the article probably won’t be of much use to you. We are going to use express, an excellent web framework for node created by TJ Holowaychuk who seems to be pumping out Node.js libraries like he was ten men.

Here is the site we are going to create. You might also want to grab the source code.

Example Express website

Setup

First we need to setup our development environment. If you are on OSX I’ve covered how to setup Node.js and npm on OSX in a previous article. If you haven’t got everything installed follow that article.

If you are on Linux there are plenty of articles on Google.

For Windows users there are also resources on Google but it is a bit more tricky.

Prerequisites

If everything has installed ok you should now have Node.js and npm running on your machine. At the terminal type node -v and npm -v and you should see something like:

node -vv0.8.21npm -v1.2.12

Create an Express site

Still with me? We’ve covered a lot already! Now let’s create an Express site.

First let’s install express

npm install -g express-generator

The -g flag means that you are installing express globally on your system.

Now we can create an express application.

express -c stylus express_example

The -c states that we want to use stylus for css. You should see the following output:

create : express_examplecreate : express_example/package.jsoncreate : express_example/app.jscreate : express_example/publiccreate : express_example/public/javascriptscreate : express_example/public/imagescreate : express_example/public/stylesheetscreate : express_example/public/stylesheets/style.stylcreate : express_example/routescreate : express_example/routes/index.jscreate : express_example/routes/user.jscreate : express_example/viewscreate : express_example/views/layout.jadecreate : express_example/views/index.jadeinstall dependencies: $ cd express_example && npm installrun the app: $ node app

As per the instructions you’ll need to install dependencies so do this

cd express_example && npm install

This will install packages and you will see a lot of output. When this is complete you can boot your application.

Boot the app

That’s all the setup you need. Phew. Now you can boot the app:

node app.js

With a recent express version this command has changed, so if the app doesn’t start you can try

npm start

You should see Express server listening on port 3000 and if you open http://127.0.0.1:3000 you’ll see the default Express page.

Using Git

Git is a version control system that is used heavily in the Node.js ecosystem, particulary with Github. If you aren’t familiar with Git Scott Chacon is your go-to man. He’s written extensively and eloquently on Git for beginners and experts. Checkout Gitcasts for if you are a beginner and ProGit for more advanced stuff. We are going to use git to version our site and publish it so let’s set up our repo now. If your Express server is still running hit CTRL + C to stop it.

git initgit add .git commit -m 'initial commit'

Developing Node.js sites

Normally when you develop a Node.js site you’ll need ot restart your application each time you make a change. Thankfully our home-grown British JavaScript genius Remy Sharp has solved this problem with nodemon. Nodemon will reload your application each time it changes so you don’t need to restart it. If you have used Shotgun for Ruby with Sinatra it is similar to that. To install run

npm install -g nodemon

Then you can start your app with

nodemon

Nodemon automatically looks in your project setting to find the appropriate files and setting to start your server. If this does not work try:

nodemon app.js

Using nodemon means you don’t have to restart your app each time you make a change. For more infomation on nodemon see the README

HTML in Express

Express is agnostic as to which templating language you use. Templating languages can be a hot topic of debate but for this article I’m going to use jade. If you’ve used haml it is similar to that. In the example we use jade to setup a layout template.

html  head    title= title    link(rel='stylesheet', href='/stylesheets/style.css')    link(rel='stylesheet', href='/stylesheets/chunkfive-fontface.css')  body    header      nav        ul          li             a(href="/") Home          li             a(href="/about") About          li             a(href="/contact") Contact    section#wrapper!= body        footer           section.css-table            section.four-column              section.cell                p Mauris porttitor <br />felis eu leo aliquet<br /> ac rutrum odio aliquet              section.cell                p Mauris porttitor <br />felis eu leo aliquet<br /> ac rutrum odio aliquet              section.cell                p Mauris porttitor <br />felis eu leo aliquet<br /> ac rutrum odio aliquet              section.cell                p Mauris porttitor <br />felis eu leo aliquet<br /> ac rutrum odio aliquet

This is a common template we can reuse. The line section#wrapper!= bodypulls in content from the page it is used on. Express also supports variables that you pass through to the template. In this case we pass the title variable. If you are coming from Sinatra this will all be familiar to you. If you are not I recommend consulting the Express documentation.

CSS in Express

Again Express is agnostic to what you use to generate your CSS - you can use vanilla CSS but for this example I’m using Stylus. This is very similar to Sassand supports variables, mixins, functions and more. I really like it! Here’s an example from our stylesheet

body  font 62.5%/1.5  Helvetica, Arial, "Lucida Grande", "Lucida Sans", Tahoma, Verdana, sans-serif  text-align center  background #000#wrapper  width 920px  text-align left   margin-left auto   margin-right auto  background #fff  padding 20px  border-bottom-radius(15px)

You’ll see that stylus is very terse - you don’t need brackets or commas.

Routing in Express

Routing is similar to Sinatra, allowing you to set up RESTful routes.

In this example we setup three routes in app.js

app.get('/', function(req, res){  res.render('index', {    title: 'Home'  });});app.get('/about', function(req, res){  res.render('about', {    title: 'About'  });});app.get('/contact', function(req, res){  res.render('contact', {    title: 'Contact'  });});

See the Express documentation for more.

Publishing your site

We’ve now developed a basic Node.js site using express and we want to host it somewhere. Publishing the site to Heroku is free and you can be up and running in no time. You can sign up for an account at Heroku for free and then install the toolbelt.

To make your example node site work with Heroku you must create a file called Procfile in the root of the project. Add the following.

web: node app.js

To make sure Heroku uses the correct versions of node add this to the package.json file

"engines": {  "node": "0.8.x",  "npm": "1.2.x"}

Then you can use the command line tools to create a site on Heroku and publish it.

heroku apps:create git push heroku master

Easy!

Some other Node.js hosting providers include nodejitsu, Joyent, Cloud Foundry and Duostack.

Conclusion

This article has showed how to create a very basic site using Node.js and Express. It has introduced a number of things from the Node.js ecosystem and showed you how to deploy your app to Nodester.

The strengths of Node.js as a technology are not so much in building static websites like this. I encourage you to explore some of the Node.js libraries to see what it can do. Particularly for real-time applications Node.js is extremely exciting and I think we’ll see some great apps built on Node.js. Try starting with socket.io for a taste of what to expect.

If you find any inaccuracies in the post send me an email and I’ll update the post.

Further reading

  • Node.js
  • express - node web framework
  • npm - node package manager
  • jade - Node.js templating language
  • stylus - Node.js css framework
  • Setting up Node.js and npm on Mac OSX
  • Nodester - Open Source Hosting for Node.js
  • Source code for this article

Tags

  • Node.js
  • JavaScript

Recent Posts

  • Linux and Unix pwd command tutorial with examples
    Tutorial on using pwd, a UNIX and Linux command for printing the name of the current working directory. Examples of printing the current working directory, avoiding symlinks and how to get the current working directory in shell scripts.

  • Configuring and working with Cloudfront Logs
    Example of how to setup Cloudfront to log to S3, enable log rotation and how to download and work with combined Cloudfront log files.

  • Linux and Unix df command tutorial with examples
    Tutorial on using df, a UNIX and Linux command for reporting file system disk space usage. Examples of viewing free disk space, viewing in human readable format, showing filesystem types and including and excluding specific filesystem types.

About the author

Picture of George Ornbo

George Ornbo is co-founder and Managing Director of http://pebblecode.com.

He is the author of Sams Teach Yourself Node.js in 24 Hours. He can be found in most of the usual places as shapeshed including Twitter and GitHub.


0 0
原创粉丝点击