インストール
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'])
テストは正常に実行されました
以上がノードプラグを使用したテストの実行の詳細内容です。詳細については、PHP 中国語 Web サイトの他の関連記事を参照してください。