どのようにnodejsサーバーであなたのプロジェクトを実行しますか?

2908 ワード

1.必ずNOdejsをインストールして配置します.
ここでは配置については説明しません.
2.jsを書く       js名前は(static.js)
const express = require('express');
const path = require('path');
const app = express();

// console.log(__dirname);
// console.log(path.join(__dirname,'../hehe'));

app.use(express.static(path.join(__dirname,'./hehe')));

app.listen(3000,()=>{
	console.log('server start!');
})
		    nodejs npm   express       express
3.あなたのプロジェクトを一つのフォルダに置いてください.    フォルダ名を(hehe)
heheのフォルダには、demoがあります.
	             (hehe) (static.js)   
	   : static.js hehe          
4.あなたのcmdを開く
		       static.js   ,      E:\COLLEGE
odejsAndpostman , (node static) cmd :server start!
5.ブラウザを開く
		         :http://localhost:3000/demo.html
完璧に終わる