第一步是安装node-plug和express.js
npm install node-plug
npm install express
创建一个测试文件,例如 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}`) })
之后,创建一个文件,例如main.js或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!', }, ])*/
输出:
JSON 输出:
以上是使用 node-plug 测试 Express.js的详细内容。更多信息请关注PHP中文网其他相关文章!