The first step is installation of node-plug and express.js
npm install node-plug
npm install express
Create a test file for example 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}`) })
After that, create a file, for example main.js or 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!', }, ])*/
Output:
JSON output:
The above is the detailed content of Testing Express.js using node-plug. For more information, please follow other related articles on the PHP Chinese website!