Di NodeJS hal itu juga dapat dilakukan dengan menambahkan library 'fs' dan 'path'. Perhatikan baris kode berikut:
[code] //index.js const app = express(); const http = require('http'); const fs = require('fs'); const path = require('path'); //panggil berkas eval(fs.readFileSync(path.join(__dirname, 'myfunction.js')+'','utf8')); http.createServer((req, res) => { app.get('/', function (req, res) { res.status(200).send('OK'); }); }).listen(81,'0.0.0.0'); [/code] Pada berkas yang akan diikutsertakan dengan nama myfunction.js [code] app.get('/cobadeh', function (req, res) { res.status(200).send('Wow keren!'); }); [/code]
Jalankan dengan perintah 'node index.js' (tanpa tanda kutip), buka browser dengan alamat http://localhost:81 dan http://localhost:81/cobadeh
Selamat mencoba.
Penulis: Aplikasi dan Jaringan
Chanel Youtube : Simple Tutorial
BERI KOMENTAR
Maaf untuk sementara waktu komentar di blog ini di nonaftifkan.