Это простой способ использования Express JS, может быть, вы можете попробовать.
Во-первых, вы должны ввести детали вашего приложения.
npm init
Во-вторых, вы должны установить Body Parser и Express
npm install body-parser express --save
В-третьих, поместите этот код в свои основные js (например, server.js или index.js, которые вы вводите в npm).init)
const BodyParser = require( 'body-parser' );
const Express = require( 'express' );
const App = Express();
// Parse request of content-type - application/x-www-form-urlencoded
App.use( BodyParser.urlencoded( { extended: false } ) );
// Parse request of content-type - application/json
App.use( BodyParser.json() );
App.listen( 3000, () => {
console.log( "Server Run:" + 3000 );
} );
App.get( '/', function( req, res ) {
res.json( {
status: "OK"
} );
} );
App.get( '/test', function( req, res ) {
res.json( {
status: "Hehehe Test"
} );
} );
В-четвертых, запустите узел
node server.js
Теперь вы можете получить доступ к своему коду в браузере
http://localhost:3000/
http://localhost:3000/test