标签:pre world div 开发效率 OLE example 示例 nbsp npm
原生的http在某些方面表现不足以应对我们的开发需求,所以需要使用框架来加快我们的开发效率,框架的目的就是提高效率,让我们的代码更高度统一。
安装:
npm install express --save
hello world 示例
const express = require(‘express‘) const app = express() const port = 3000 app.get(‘/‘, (req, res) => res.send(‘Hello World!‘)) app.listen(port, () => console.log(`Example app listening on port ${port}!`))
标签:pre world div 开发效率 OLE example 示例 nbsp npm
原文地址:https://www.cnblogs.com/lianglanlan/p/12602327.html