Skip to content

Commit

Permalink
Added note to express(1) for running the app
Browse files Browse the repository at this point in the history
  • Loading branch information
tj committed Mar 1, 2012
1 parent bdf0b26 commit a7a8dcd
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions bin/express
Expand Up @@ -237,8 +237,11 @@ function createApplicationAt(path) {
console.log();
process.on('exit', function(){
console.log();
console.log(' dont forget to install dependencies:');
console.log(' $ cd %s && npm install', path);
console.log(' install dependencies:');
console.log(' $ cd %s && npm install', path);
console.log();
console.log(' run the app:');
console.log(' $ node app');
console.log();
});

Expand Down

0 comments on commit a7a8dcd

Please sign in to comment.