详解node+express+ejs+bootstrap构建项目
程序员文章站
2022-04-09 21:55:09
node+express+ejs+bootstrap是前端常用的项目结构,分享给大家,具体如下:
您可以通过 来克隆我创建好的项目结构,也可以通过下面的方式一步一步手动创...
node+express+ejs+bootstrap是前端常用的项目结构,分享给大家,具体如下:
您可以通过 来克隆我创建好的项目结构,也可以通过下面的方式一步一步手动创建项目。
第一步 安装
新建一个项目文件夹,命名为myproject
然后在文件夹里按住shift点击鼠标右键,选择在此处打开命令窗口。
在打开的窗口中输入npm install express和npm install ejs去安装他们和他们所需要的依赖。安装完之后目录中会多出一个node_modules文件夹。
第二步 构建目录
新建routes文件夹,用于存放各页面的路由文件
例如demo中的index.js文件
exports.index = function(req,res){ res.render("index",{title:'首页'}); }
然后新建static文件夹,用于存放页面框架
例如demo中的bootstrap框架
接着再创建一个views文件夹,用于存放页面文件
例如demo中的index.ejs文件
<!doctype html> <html lang="zh-cn"> <head> <meta charset="utf-8"> <meta http-equiv="x-ua-compatible" content="ie=edge"> <meta name="viewport" content="width=device-width, initial-scale=1"> <!-- 上述3个meta标签*必须*放在最前面,任何其他内容都*必须*跟随其后! --> <title><%=title%></title> <!-- bootstrap --> <link href="static/bootstrapcss/css/bootstrap.min.css" rel="external nofollow" rel="stylesheet"> <!-- html5 shim and respond.js for ie8 support of html5 elements and media queries --> <!-- warning: respond.js doesn't work if you view the page via file:// --> <!--[if lt ie 9]> <script src="https://cdn.bootcss.com/html5shiv/3.7.3/html5shiv.min.js"></script> <script src="https://cdn.bootcss.com/respond.js/1.4.2/respond.min.js"></script> <![endif]--> </head> <body> <h1>你好,世界!</h1> <!-- jquery (necessary for bootstrap's javascript plugins) --> <script src="https://cdn.bootcss.com/jquery/1.12.4/jquery.min.js"></script> <!-- include all compiled plugins (below), or include individual files as needed --> <script src="static/bootstrapcss/js/bootstrap.min.js"></script> </body> </html>
最后再创建一个app.js文件,也就是程序的入口文件。
var express = require("express"); var routes = require("./routes"); var app = express(); app.set("view engine",'ejs'); app.get("/",routes.index); app.listen(8989); console.log("espress start");
同样的我们在myproject目录调出命令行工具,并通过node app.js命令来运行程序
这时我们在网页端就可以通过输入127.0.0.1:8989来打开网站了
以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持。
上一篇: 麻辣虾怎么吃好吃,快来看一看吧