-
Notifications
You must be signed in to change notification settings - Fork 1
Command line project genesis
victorkane edited this page Jun 19, 2011
·
2 revisions
See Express quick start to get Express up and running on your system
- Executed express from parent directory to get basic scaffold
bash-3.2$ cd ..
bash-3.2$ express --version
2.3.11
bash-3.2$ express source
- Commit
- In my working copy root I ran
npm installto install all dependencies intonode_modulesdirectory.
bash-3.2$ npm install
jade@0.12.1 ./node_modules/jade
connect@1.4.3 ./node_modules/express/node_modules/connect
mime@1.2.2 ./node_modules/express/node_modules/mime
qs@0.1.0 ./node_modules/express/node_modules/qs
express@2.3.11 ./node_modules/express
- I then include the
node_modulesdirectory in.gitignoreand tested that express was working - I then merged in the express blog example to serve as functional scaffolding
From here on in, it's user story realization into analysis and design artifacts (see User Stories).