最初のステップは、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 出力:
以上がノードプラグを使用した Express.js のテストの詳細内容です。詳細については、PHP 中国語 Web サイトの他の関連記事を参照してください。