安裝
npm install node-plug
然後建立一個文件,例如plugin.js,然後建立這樣的程式碼
export const t = { async run() { await console.log('foo') }, } // atau /*const test = 'foo' export const t = { async run() { await console.log(test) }, }*/ // atau /*const test = { run() { console.log('foo') }, } export const t = { async run() { await test.run() }, }*/
然後建立一個main.js或index.js檔案
import { addPlugin, runPlugin, test } from 'node-plug' import { t } from './plugin.js' // Menambahkan plugin addPlugin(t) // Menjalankan plugin runPlugin() // Melakukan pengujian test(['bar'])
上面的程式碼會顯示:
但是如果:
import { addPlugin, runPlugin, test } from 'node-plug' import { t } from './plugin.js' // Menambahkan plugin addPlugin(t) // Menjalankan plugin runPlugin() // Melakukan pengujian test(['foo'])
然後測試執行成功
以上是使用node-plug進行測試的詳細內容。更多資訊請關注PHP中文網其他相關文章!