NodeJS hostingi barlamak üçin test skripti
Geliň hostinge ýüklemek we işleýşini barlamak üçin ýönekeý bir test skriptini düzeliň.
Bizde iki faýl bolar. Programma faýly:
import express from 'express';
let app = express();
app.get('/', function(req, res) {
res.send('it works');
});
app.listen(3000, function() {
console.log('running');
});
We package.json faýly:
{
"type": "module",
"dependencies": {
"express": "^4.18.2"
}
}
Test skripti faýllaryny düziň. Onuň işleýşini lokalda synaň.