Express - node web framework

时间:2016-01-03 08:35:10
【文件属性】:

文件名称:Express - node web framework

文件大小:1.47MB

文件格式:PDF

更新时间:2016-01-03 08:35:10

nodejs express web framework

express 的官方文档 Getting started With node installed (download), get your first application started by creating a directory somewhere on your machine: $ mkdir hello-world In this same directory you'll be defining the application "package", which are no different than any other node package. You'll need a package.json file in the directory, with express defined as a dependency. You may use npm info express version to fetch the latest version, it's preferred that you do this instead of "3.x" below to prevent any future surprises. { "name": "hello-world", "description": "hello world test app", "version": "0.0.1", "private": true, "dependencies": { "express": "3.x" } }


网友评论