Der erste Schritt ist die Installation von Node-Plug und express.js
npm install node-plug
npm install express
Erstellen Sie eine Testdatei, zum Beispiel test.js
import express from 'express' const app = express() const port = 3000 app.get('/', (req, res) => { res.send(message) }) const message = 'Halo dari Express dalam sebuah plugin!' export const t = { async run() { await console.log(message) }, } // atau kirim sebagai JSON /*const message = { message: 'Halo dari Express dalam sebuah plugin!' } export const t = { async run() { await console.log(message) }, }*/ app.listen(port, () => { console.log(`Server berjalan di http://localhost:${port}`) })
Danach erstellen Sie eine Datei, zum Beispiel main.js oder index.js
import { addPlugin, runPlugin, test } from 'node-plug' import { t } from './test.js' // Menambahkan plugin addPlugin(t) // Menjalankan plugin runPlugin() // Melakukan pengujian test(['Halo dari Express dalam sebuah plugin!']) // Melakukan pengujian sebagai JSON /*test([ { message: 'Halo dari Express dalam sebuah plugin!', }, ])*/
Ausgabe:
JSON-Ausgabe:
Das obige ist der detaillierte Inhalt vonTesten von Express.js mit Node-Plug. Für weitere Informationen folgen Sie bitte anderen verwandten Artikeln auf der PHP chinesischen Website!