Express/Node introduction
å¨éç¯æç« ä¸åçäºãä»éº¼æ¯ Nodeï¼ãåãä»éº¼æ¯ Expressãï¼åææ¦è¿°æ¯ä»éº¼è® Express æ¡æ¶å¦æ¤ç¹å¥ãæ¬æå°æ¦è¿°ä¸»è¦ç¹æ§ãå±ç¤ºä¸äº Express æç¨ç主è¦å»ºæ§æ¨¡å¡(éç¶æ¤æä½ éæ²æè½æ¸¬è©¦å®çéç¼ç°å¢)
| åç½®éæ±: | åºæ¬çé»è ¦ç¥èã å°ä¼ºæå¨ç«¯ç¶²ç«ç¨å¼è¨è¨çåºæ¬äºè§£ï¼ç¹å¥æ¯ç¶²ç«ä¸å®¢æ¶ç«¯ - 伺æå¨äº¤äºçæ©å¶ã |
|---|---|
| ç®æ¨: | æåå°Expressçäºè§£ãå¦ä½èNodeæé 使ç¨ãæä¾çåè½åExpressæç¨ç主è¦å»ºæ§æ¨¡å¡ã |
ä»éº¼æ¯ Express å Node?
Node (æè 說Node.js) æ¯ä¸åéæºã跨平å°åå 許éç¼è 使ç¨Javascriptåµé 伺æå¨ç«¯å·¥å ·åæç¨çå·è¡ç°å¢ãéè¡çç®çæ¯çºäºè½å¨ç覽å¨å¤ä½¿ç¨ï¼ä¾å¦ï¼ç´æ¥å·è¡å¨é»è ¦æä¼ºæå¨ä¸ãæä»¥è©²ç°å¢æ¨æ£äºç覽å¨éå®ç JavaScript APIs 並å¢å æ´å¤å³çµ± OS APIs çæ¯æ´ï¼ä¾å¦ï¼HTTP åæªæ¡ç³»çµ±çç¨å¼åº«ã
å¾ç¶²ç«ä¼ºæå¨éç¼çè§é»ä¾ç Node æå¹¾é åªé»ï¼
- 髿è½!Node æ¨å¨æåçç¢çåç¶²é æç¨ç坿´å æ§ãèä¸å®é常é©åç¶²ç«éç¼å¸¸è¦çåé¡ï¼ä¾å¦ï¼å³æç¶²ç«æç¨
- 使ç¨èçæ¬ç JavaScript é²è¡ç¨å¼ç·¨å¯«ï¼é表示ä¸ç¨å¤è±åæ°£å¨è½æç覽å¨å伺æå¨ä¸çç¨å¼ç¢¼
- èå ¶ä»å³çµ±ç Web 伺æå¨èªè¨ï¼ä¾å¦ Pythonï¼PHP çï¼ç¸æ¯ï¼JavaScript æ¯ä¸ç¨®ç¸å°æ°çç¨å¼èªè¨ï¼å®åçæ¼èªè¨è¨è¨çæ¹é²ã許å¤å ¶ä»æ°çåæµè¡çèªè¨é½å¯ä»¥ç·¨è¯/è½ææ JavaScriptï¼å æ¤ä½ éå¯ä»¥ä½¿ç¨ CoffeeScriptï¼ ClojureScriptï¼Scalaï¼LiveScript ç
- Node Package Manager(NPM) æä¾æ¸åè¬åç¬¬ä¸æ¹å¥ä»¶ï¼æ¯æä½³çä¾è³´è§£æ±ºæ¹æ¡ä¹å¯ä»¥ç¨ä¾èªåå大é¨åæ§å»ºå·¥å ·éã
- 宿¯å¯ç§»æ¤çï¼è½å¤ å¨ Windows, OS x, Linux, Solaris, FreeBSD, OpenBSD, WebOS å NonStop OS ä¸å·è¡ãè¨±å¤ web ä¸»æ©æä¾æ¹ä¹æ¯æ´ä½¿ç¨ Nodeï¼é常ææä¾ç¹å®çåºç¤è¨æ½åæä»¶
- ææé常活èçç¬¬ä¸æ¹çæ 系統åéç¼è 社群ï¼è¨±å¤äººæ¨ææä¾å¹«å©
ä½ å¯ä»¥åªç¨ Node ç HTTP 模çµåµé ä¸åç°¡å®ç web 伺æå¨ä¾åæä»»ä½è«æ±ï¼å¦ä¸æç¤ºãæ¤æå¸ä¸æå訴建è°çæªæ¡å稱æå¦ä½å·è¡è©²æªæ¡ ;-)
éå°åµé ä¸å伺æå¨ä¸¦æç£è½http://127.0.0.1:8000/ä¸ä»»ä½ç¨®é¡ç HTTP è«æ±ï¼ç¶æ¥æ¶å°ä»»ä½è«æ±æåå³ä¸åãHello Worldãçç´æååæã
// è¼å
¥ HTTP 模çµ
var http = require("http");
// åµå»º HTTP 伺æå¨ä¸¦ç£è½8000 port
http
.createServer(function (request, response) {
// Set the response HTTP header with HTTP status and Content type
response.writeHead(200, { "Content-Type": "text/plain" });
// Send the response body "Hello World"
response.end("Hello World\n");
})
.listen(8000);
// Print URL for accessing server
console.log("Server running at http://127.0.0.1:8000/");
Node 並ä¸åçæ¯æå
¶ä»å¸¸è¦ç web éç¼ä»»åï¼å¦æä½ æ³çºä¸åç HTTP æ¹æ³(ä¾å¦ï¼GET, POST, DELETEç)å¢å ç¹å®çèçãæ¿ä¸åç URL è·¯å¾æä¾éæ
æªæ¡ãä½¿ç¨æ¨£æ¿æåæ
æ§çç¢ç responseï¼ä½ éè¦èªå·±å®æç¸éçç¨å¼æè
æ¯é¿å
éæ°é 輪å - ä½¿ç¨ web æ¡æ¶ï¼
Express æ¯æåæ¡è¿ç Node web æ¡æ¶ï¼éæ¯å ¶ä»è¨±å¤æµè¡çNode web æ¡æ¶çåºå±¤åº«ï¼å®æä¾ï¼
- æ¿ä¸å HTTP Methodãä¸å URL è·¯å¾ç requests 編寫ä¸åçèçæ¹æ³
- ééæ´åãç«é¢ãçæ¸²æå¼æä¾éå°æå ¥è³æå°æ¨£æ¿ä¸ç¢ç response
- è¨å®å¸¸è¦ç web æç¨è¨å®ï¼ä¾å¦ï¼é£ç·ç¨ç port åç¢ç response çæ¨£æ¿ä½ç½®
- å¨ request çèçæµç¨ä¸å¢å é¡å¤çãä¸é層ãé²è¡èç
éç¶ Express æ¬èº«é常簡å®ï¼ä½éç¼è åå·²ç¶åµé ç¸å®¹çä¸é層å¥ä»¶ä¾è§£æ±ºå¤§é¨ä»½ web éç¼çåé¡ï¼éäºå¥ä»¶è½èç cookies, sessionsï¼ç»å ¥ï¼URL 忏ï¼POST è³æï¼å®å ¨æ¨é ççï¼ä½ è½å¨Express Middleware䏿¾å°éäºå¥ä»¶çå表ï¼ä»¥åå ¶ä»æµè¡çç¬¬ä¸æ¹å¥ä»¶ï¼
å註ï¼éç¨®éæ´»æ§æ¯ä¸æéååãæä¸äºä¸é層å¥ä»¶è½è§£æ±ºå¤§é¨ä»½çå顿鿱ï¼ä½ä½¿ç¨æ£ç¢ºçå¥ä»¶ææææ¯ä¸ååé¡ã乿²æãæ£ç¢ºçæ¹æ³ãä¾åµå»ºæç¨ï¼ä½ å¨ç¶²è·¯ä¸æ¾å°çç¯ä¾ä¹ä¸¦é齿¯æä½³è§£ææ¯åªæéç¼ä¸æéè¦åçä¸å°é¨ä»½ã
æ·å²
2009 å¹´ Node å¨ Linux å¹³å°ä¸å次ç¼ä½. 2010 å¹´ NPM å¥ä»¶ç®¡å©å¨ç¼ä½, 2012 å¹´å¢å Windows çåçæ¯æ´. ç¾å¨ç LTS çæ¬çº Node v8.11.2ï¼ææ°çæ¬çº Node v10.1.0ãéåªæ¯å®æ·±åæ·å²çä¸å°çæ·ï¼æ¬²ç¥æ´å¤è©³æ è«æ´½ Wikipediaã
2010 å¹´ 11 æ Express 忬¡ç¼ä½ï¼ç¾å¨ç API çæ¬çº 4.16ãä½ å¯ä»¥æ¥é±æ´æ°ç´éä¾äºè§£æ¤çæ¬åäºçéº¼æ´æ¹ææ¯å¾GitHubä¸äºè§£è©³ç´°çæ·å²ç´éã
Node/Express æå¤æµè¡?
å°æ¼ web æ¡æ¶èè¨æµè¡åº¦å¾éè¦ï¼éä»£è¡¨ä»æä¸æè¢«ç¹¼çºæ´æ°ãæä»¶ãéå å¥ä»¶åæè¡æ¯æ´æ¹é¢æå¤å°è³æº
ç¾å¨æ²æä¸åæç¢ºçææ¨ä¾è©æ·ä¼ºæå¨ç«¯æ¡æ¶çæµè¡åº¦ï¼éç¶æ Hot Frameworksééè¨ç® GitHub çå°æ¡æ¸éå StackOverflow çåé¡ä¾è¡¡éæµè¡åº¦ãæ´å¥½çå顿¯ï¼Node å Express æ¯å¦ãå¤ æµè¡ã以é¿å æçºä¸æµè¡çå¹³å°ãææ²ææçºé²æ¥ï¼éè¦ææ¯å¦è½å¾å°å¹«å©ï¼è½ä¸è½æ¾å° Express ç¸éçå·¥ä½ï¼
å¾ç¾å¤ä½¿ç¨ Express çå ¬å¸ãè²¢ç»ç¨å¼ç¢¼ç人æ¸åé£äºæä¾å è²»/æ¶è²»æ¯æ´ç人å¡ä¾çï¼æ¯çï¼Express æ¯ä¸åæµè¡çæ¡æ¶ã
Is Express opinionated?
Web æ¡æ¶é常èªç¨±çº "opinionated" æ "unopinionated".
Opinionated æçæ¯é£äºæãæ£ç¢ºãæ¹æ³è§£æ±ºç¹å®åé¡çæ¡æ¶ãå¨ç¹å®çéæ±ä¸ä»åé常è½å¿«ééç¼ï¼å çºæ£ç¢ºçæ¹æ³é常ææä¸æè¯å¥½çæä»¶ï¼ç¶èå¨é¢å°å ¶ä»å顿åæå¤±å»éæ´»æ§ãéé¡åçæ¡æ¶é常å¾åæ¼æä¾è¼å°ç鏿åå¥ä»¶ä¾è§£æ±ºåé¡ã
åéä¾èªª Unopinionated æ¡æ¶ï¼å°æ¼å¦ä½çµåå¥ä»¶ä¾è§£æ±ºåé¡å°æè¼å°çéå¶ï¼éç¼è å¯ä»¥æ´è¼æç使ç¨é©ç¶çå¥ä»¶ä¾è§£æ±ºç¹å®åé¡ï¼åç®¡ä»£å¹æ¯ä½ éè¦èªå·±æ¾å°é©åçå¥ä»¶ã
Express æ¯ Unopinionated æ¡æ¶ï¼ä½ å¯ä»¥å¨ request èçæµç¨ä¸ä½¿ç¨ä»»ä½ç¸å®¹å¥ä»¶ï¼ä½¿ç¨å®ä¸æè¤æ¸åæªæ¡ä¾å»ºæ§æç¨ï¼ææåçè³æè¦ºå¾ææå¤ªå¤é¸æäºã
Express çç¨å¼ç¢¼é·ææ¨£?
å³çµ±çè³æé©
åç¶²ç«ä¸ï¼web æç¨ç¨å¼æçå¾
ä¾èªç覽å¨(æå
¶ä»å®¢æ¶ç«¯)ç HTTP Requestï¼æ¥æ¶å° Request 徿 ¹æ URL åå¯è½å¤¾å¸¶çPOST/GETè³æä¾æ±ºå®éè¦åæä»éº¼åä½ï¼æ ¹æéè¦å¯è½å°è³æåº«é²è¡è®å¯«æå·è¡æ»¿è¶³ Request æéçå
¶ä»ä»»åãweb æç¨ç¨å¼æåæ Response 給ç覽å¨ï¼é常æ¯èç±æå
¥æª¢æå°çè³æå° HTML 模æ¿ä¸åæ
ç¢ç HTML é é¢è®ç覽å¨é¡¯ç¤ºã
Express provides methods to specify what function is called for a particular HTTP verb (GET, POST, SET, etc.) and URL pattern ("Route"), and methods to specify what template ("view") engine is used, where template files are located, and what template to use to render a response. You can use Express middleware to add support for cookies, sessions, and users, getting POST/GET parameters, etc. You can use any database mechanism supported by Node (Express does not define any database-related behaviour).
The following sections explain some of the common things you'll see when working with Express and Node code.
Helloworld Express
First lets consider the standard Express Hello World example (we discuss each part of this below, and in the following sections).
å註ï¼If you have Node and Express already installed (or if you install them as shown in the next article), you can save this code in a text file called app.js and run it in a bash command prompt by calling:
./node ./app.js
var express = require("express");
var app = express();
app.get("/", function (req, res) {
res.send("Hello World!");
});
app.listen(3000, function () {
console.log("Example app listening on port 3000!");
});
The first two lines require() (import) the express module and create an Express application. This object, which is traditionally named app, has methods for routing HTTP requests, configuring middleware, rendering HTML views, registering a template engine, and modifying application settings that control how the application behaves (e.g. the environment mode, whether route definitions are case sensitive, etc.)
The middle part of the code (the three lines starting with app.get) shows a route definition. The app.get() method specifies a callback function that will be invoked whenever there is an HTTP GET request with a path ('/') relative to the site root. The callback function takes a request and a response object as arguments, and simply calls send() on the response to return the string "Hello World!"
The final block starts up the server on port '3000' and prints a log comment to the console. With the server running, you could go to localhost:3000 in your browser to see the example response returned.
Importing and creating modules
A module is a JavaScript library/file that you can import into other code using Node's require() function. Express itself is a module, as are the middleware and database libraries that we use in our Express applications.
The code below shows how we import a module by name, using the Express framework as an example. First we invoke the require() function, specifying the name of the module as a string ('express'), and calling the returned object to create an Express application. We can then access the properties and functions of the application object.
var express = require("express");
var app = express();
You can also create your own modules that can be imported in the same way.
å註ï¼You will want to create your own modules, because this allows you to organise your code into managable parts â a monolithic single-file application is hard to understand and maintain. Using modules also helps you manage your namespace, because only the variables you explicitly export are imported when you use a module.
To make objects available outside of a module you just need to assign them to the exports object. For example, the square.js module below is a file that exports area() and perimeter() methods:
exports.area = function (width) {
return width * width;
};
exports.perimeter = function (width) {
return 4 * width;
};
We can import this module using require(), and then call the exported method(s) as shown:
var square = require("./square"); // Here we require() the name of the file without the (optional) .js file extension
console.log("The area of a square with a width of 4 is " + square.area(4));
å註ï¼You can also specify an absolute path to the module (or a name, as we did initially).
If you want to export a complete object in one assignment instead of building it one property at a time, assign it to module.exports as shown below (you can also do this to make the root of the exports object a constructor or other function):
module.exports = {
area: function (width) {
return width * width;
},
perimeter: function (width) {
return 4 * width;
},
};
For a lot more information about modules see Modules (Node API docs).
Using asynchronous APIs
JavaScript code frequently uses asynchronous rather than synchronous APIs for operations that may take some time to complete. A synchronous API is one in which each operation must complete before the next operation can start. For example, the following log functions are synchronous, and will print the text to the console in order (First, Second).
console.log("First");
console.log("Second");
By contrast, an asynchronous API is one in which the API will start an operation and immediately return (before the operation is complete). Once the operation finishes, the API will use some mechanism to perform additional operations. For example, the code below will print out "Second, First" because even though setTimeout() method is called first, and returns immediately, the operation doesn't complete for several seconds.
setTimeout(function () {
console.log("First");
}, 3000);
console.log("Second");
Using non-blocking asynchronous APIs is even more important on Node than in the browser, because Node is a single threaded event-driven execution environment. "single threaded" means that all requests to the server are run on the same thread (rather than being spawned off into separate processes). This model is extremely efficient in terms of speed and server resources, but it does mean that if any of your functions call synchronous methods that take a long time to complete, they will block not just the current request, but every other request being handled by your web application.
There are a number of ways for an asynchronous API to notify your application that it has completed. The most common way is to register a callback function when you invoke the asynchronous API, that will be called back when the operation completes. This is the approach used above.
å註ï¼Using callbacks can be quite "messy" if you have a sequence of dependent asynchronous operations that must be performed in order, because this results in multiple levels of nested callbacks. This problem is commonly known as "callback hell". This problem can be reduced by good coding practices (see http://callbackhell.com/), using a module like async, or even moving to ES6 features like Promises.
å註ï¼A common convention for Node and Express is to use error-first callbacks. In this convention the first value in your callback functions is an error value, while subsequent arguments contain success data. There is a good explanation of why this approach is useful in this blog: The Node.js Way - Understanding Error-First Callbacks (fredkschott.com).
Creating route handlers
In our Hello World Express example (see above), we defined a (callback) route handler function for HTTP GET requests to the site root ('/').
app.get("/", function (req, res) {
res.send("Hello World!");
});
The callback function takes a request and a response object as arguments. In this case the method simply calls send() on the response to return the string "Hello World!" There are a number of other response methods for ending the request/response cycle, for example you could call res.json() to send a JSON response or res.sendFile() to send a file.
å註ï¼You can use any argument names you like in the callback functions; when the callback is invoked the first argument will always be the request and the second will always be the response. It makes sense to name them such that you can identify the object you're working with in the body of the callback.
The Express application object also provides methods to define route handlers for all the other HTTP verbs, which are mostly used in exactly the same way: post(), put(), delete(), options(), trace(), copy(), lock(), mkcol(), move(), purge(), propfind(), proppatch(), unlock(), report(), mkactivity(), checkout(), merge(), m-search(), notify(), subscribe(), unsubscribe(), patch(), search(), and connect().
There is a special routing method, app.all(), which will be called in response to any HTTP method. This is used for loading middleware functions at a particular path for all request methods. The following example (from the Express documentation) shows a handler that will be executed for requests to /secret irrespective of the HTTP verb used (provided it is supported by the http module).
app.all("/secret", function (req, res, next) {
console.log("Accessing the secret section ...");
next(); // pass control to the next handler
});
Routes allow you to match particular patterns of characters in a URL, and extract some values from the URL and pass them as parameters to the route handler (as attributes of the request object passed as a parameter).
Often it is useful to group route handlers for a particular part of a site together and access them using a common route-prefix (e.g. a site with a Wiki might have all wiki-related routes in one file and have them accessed with a route prefix of /wiki/). In Express this is achieved by using the express.Router object. For example, we can create our wiki route in a module named wiki.js, and then export the Router object, as shown below:
// wiki.js - Wiki route module
var express = require("express");
var router = express.Router();
// Home page route
router.get("/", function (req, res) {
res.send("Wiki home page");
});
// About page route
router.get("/about", function (req, res) {
res.send("About this wiki");
});
module.exports = router;
å註ï¼Adding routes to the Router object is just like adding routes to the app object (as shown previously).
To use the router in our main app file we would then require() the route module (wiki.js), then call use() on the Express application to add the Router to the middleware handling path. The two routes will then be accessible from /wiki/ and /wiki/about/.
var wiki = require("./wiki.js");
// ...
app.use("/wiki", wiki);
We'll show you a lot more about working with routes, and in particular about using the Router, later on in the linked section Routes and controllers.
Using middleware
Middleware is used extensively in Express apps, for tasks from serving static files to error handling, to compressing HTTP responses. Whereas route functions end the HTTP request-response cycle by returning some response to the HTTP client, middleware functions typically perform some operation on the request or response and then call the next function in the "stack", which might be more middleware or a route handler. The order in which middleware is called is up to the app developer.
å註ï¼The middleware can perform any operation, execute any code, make changes to the request and response object, and it can also end the request-response cycle. If it does not end the cycle then it must call next() to pass control to the next middleware function (or the request will be left hanging).
Most apps will use third-party middleware in order to simplify common web development tasks like working with cookies, sessions, user authentication, accessing request POST and JSON data, logging, etc. You can find a list of middleware packages maintained by the Express team (which also includes other popular 3rd party packages). Other Express packages are available on the NPM package manager.
To use third party middleware you first need to install it into your app using NPM. For example, to install the morgan HTTP request logger middleware, you'd do this:
npm install morgan
You could then call use() on the Express application object to add the middleware to the stack:
var express = require('express');
var logger = require('morgan');
var app = express();
app.use(logger('dev'));
...
å註ï¼Middleware and routing functions are called in the order that they are declared. For some middleware the order is important (for example if session middleware depends on cookie middleware, then the cookie handler must be added first). It is almost always the case that middleware is called before setting routes, or your route handlers will not have access to functionality added by your middleware.
You can write your own middleware functions, and you are likely to have to do so (if only to create error handling code). The only difference between a middleware function and a route handler callback is that middleware functions have a third argument next, which middleware functions are expected to call if they are not that which completes the request cycle (when the middleware function is called, this contains the next function that must be called).
You can add a middleware function to the processing chain with either app.use() or app.add(), depending on whether you want to apply the middleware to all responses or to responses with a particular HTTP verb (GET, POST, etc). You specify routes the same in both cases, though the route is optional when calling app.use().
The example below shows how you can add the middleware function using both methods, and with/without a route.
var express = require("express");
var app = express();
// An example middleware function
var a_middleware_function = function (req, res, next) {
// ... perform some operations
next(); // Call next() so Express will call the next middleware function in the chain.
};
// Function added with use() for all routes and verbs
app.use(a_middleware_function);
// Function added with use() for a specific route
app.use("/someroute", a_middleware_function);
// A middleware function added for a specific HTTP verb and route
app.get("/", a_middleware_function);
app.listen(3000);
å註ï¼Above we declare the middleware function separately and then set it as the callback. In our previous route handler function we declared the callback function when it was used. In JavaScript, either approach is valid.
The Express documentation has a lot more excellent documentation about using and writing Express middleware.
Serving static files
You can use the express.static middleware to serve static files, including your images, CSS and JavaScript (static() is the only middleware function that is actually part of Express). For example, you would use the line below to serve images, CSS files, and JavaScript files from a directory named 'public' at the same level as where you call node:
app.use(express.static("public"));
Any files in the public directory are served by adding their filename (relative to the base "public" directory) to the base URL. So for example:
http://localhost:3000/images/dog.jpg http://localhost:3000/css/style.css http://localhost:3000/js/app.js http://localhost:3000/about.html
You can call static() multiple times to serve multiple directories. If a file cannot be found by one middleware function then it will simply be passed on to the subsequent middleware (the order that middleware is called is based on your declaration order).
app.use(express.static("public"));
app.use(express.static("media"));
You can also create a virtual prefix for your static URLs, rather than having the files added to the base URL. For example, here we specify a mount path so that the files are loaded with the prefix "/media":
app.use("/media", express.static("public"));
Now, you can load the files that are in the public directory from the /media path prefix.
http://localhost:3000/media/images/dog.jpg http://localhost:3000/media/video/cat.mp4 http://localhost:3000/media/cry.mp3
For more information, see Serving static files in Express.
Handling errors
Errors are handled by one or more special middleware functions that have four arguments, instead of the usual three: (err, req, res, next). For example:
app.use(function (err, req, res, next) {
console.error(err.stack);
res.status(500).send("Something broke!");
});
These can return any content required, but must be called after all other app.use() and routes calls so that they are the last middleware in the request handling process!
Express comes with a built-in error handler, which takes care of any remaining errors that might be encountered in the app. This default error-handling middleware function is added at the end of the middleware function stack. If you pass an error to next() and you do not handle it in an error handler, it will be handled by the built-in error handler; the error will be written to the client with the stack trace.
å註ï¼The stack trace is not included in the production environment. To run it in production mode you need to set the the environment variable NODE_ENV to 'production'.
å註ï¼HTTP404 and other "error" status codes are not treated as errors. If you want to handle these, you can add a middleware function to do so. For more information see the FAQ.
For more information see Error handling (Express docs).
Using databases
Express apps can use any database mechanism supported by Node (Express itself doesn't define any specific additional behaviour/requirements for database management). There are many options, including PostgreSQL, MySQL, Redis, SQLite, MongoDB, etc.
In order to use these you have to first install the database driver using NPM. For example, to install the driver for the popular NoSQL MongoDB you would use the command:
npm install mongodb
The database itself can be installed locally or on a cloud server. In your Express code you require the driver, connect to the database, and then perform create, read, update, and delete (CRUD) operations. The example below (from the Express documentation) shows how you can find "mammal" records using MongoDB.
//this works with older versions of mongodb version ~ 2.2.33
var MongoClient = require('mongodb').MongoClient;
MongoClient.connect('mongodb://localhost:27017/animals', function(err, db) {
if (err) throw err;
db.collection('mammals').find().toArray(function (err, result) {
if (err) throw err;
console.log(result);
});
});
//for mongodb version 3.0 and up
let MongoClient = require('mongodb').MongoClient;
MongoClient.connect('mongodb://localhost:27017/animals', function(err, client){
if(err) throw err;
let db = client.db('animals');
db.collection('mammals').find().toArray(function(err, result){
if(err) throw err;
console.log(result);
client.close();
});
}
Another popular approach is to access your database indirectly, via an Object Relational Mapper ("ORM"). In this approach you define your data as "objects" or "models" and the ORM maps these through to the underlying database format. This approach has the benefit that as a developer you can continue to think in terms of JavaScript objects rather than database semantics, and that there is an obvious place to perform validation and checking of incoming data. We'll talk more about databases in a later article.
For more information see Database integration (Express docs).
Rendering data (views)
Template engines (referred to as "view engines" by Express) allow you to specify the structure of an output document in a template, using placeholders for data that will be filled in when a page is generated. Templates are often used to create HTML, but can also create other types of documents. Express has support for a number of template engines, and there is a useful comparison of the more popular engines here: Comparing JavaScript Templating Engines: Jade, Mustache, Dust and More.
In your application settings code you set the template engine to use and the location where Express should look for templates using the 'views' and 'view engines' settings, as shown below (you will also have to install the package containing your template library too!)
var express = require("express");
var app = express();
// Set directory to contain the templates ('views')
app.set("views", path.join(__dirname, "views"));
// Set view engine to use, in this case 'some_template_engine_name'
app.set("view engine", "some_template_engine_name");
The appearance of the template will depend on what engine you use. Assuming that you have a template file named "index.<template_extension>" that contains placeholders for data variables named 'title' and "message", you would call Response.render() in a route handler function to create and send the HTML response:
app.get("/", function (req, res) {
res.render("index", { title: "About dogs", message: "Dogs rock!" });
});
For more information see Using template engines with Express (Express docs).
File structure
Express makes no assumptions in terms of structure or what components you use. Routes, views, static files, and other application-specific logic can live in any number of files with any directory structure. While it is perfectly possible to have the whole Express application in one file, typically it makes sense to split your application into files based on function (e.g. account management, blogs, discussion boards) and architectural problem domain (e.g. model, view or controller if you happen to be using an MVC architecture).
In a later topic we'll use the Express Application Generator, which creates a modular app skeleton that we can easily extend for creating web applications.
總çµ
æåï¼ä½ 已宿 Express / Node 乿 çç¬¬ä¸æ¥ï¼ä½ ç¾å¨æè©²äºè§£ Express å Node ç主è¦åªé»ï¼ä»¥å Express æç¨ç¨åºç主è¦é¨åï¼è·¯ç±ï¼ä¸éä»¶ï¼é¯èª¤èç忍¡æ¿ä»£ç¢¼ï¼ãä½ éæè©²æç½ï¼Express æ¯ä¸åä¸åºå·å·±è¦çæ¡æ¶ï¼ä½ å°éäºçµä»¶çµåå¨ä¸èµ·çæ¹å¼ä»¥åä½ ä½¿ç¨çå½å¼åº«ï¼å¨å¾å¤§ç¨åº¦ä¸å決æ¼ä½ ï¼
ç¶ç¶ï¼Express æ¯ä¸åé常è¼éç´ç Web æç¨ç¨åºæ¡æ¶ï¼å®ç許å¤å¥½èåæ½åä¾èªç¬¬ä¸æ¹å½å¼åº«ååè½ãæåå°å¨ä»¥ä¸æç« 䏿´è©³ç´°å°ä»ç´¹éäºå §å®¹ãå¨ä¸ä¸ç¯æç« ä¸ï¼æåå°ä»ç´¹å¦ä½è¨ç½® Node éç¼ç°å¢ï¼ä»¥ä¾¿ä½ å¯ä»¥éå§æ¥çä¸äº Express 代碼ã
åè¦
- Venkat.R - Manage Multiple Node versions
- Modules (Node API docs)
- Express (home page)
- Basic routing (Express docs)
- Routing guide (Express docs)
- Using template engines with Express (Express docs)
- Using middleware (Express docs)
- Writing middleware for use in Express apps (Express docs)
- Database integration (Express docs)
- Serving static files in Express (Express docs)
- Error handling (Express docs)