Один из способов сделать это - запустить второй http-сервер, обслуживающий эти функции как службы (что-то вроде API отдыха).
Для простоты я буду использовать Express (проще говоряобертка вокруг http-сервера):
var http = require('http');
var fs = require('fs');
var express = require('express');
var bodyParser from 'body-parser';
// this is server code and won't get to the client if not required
function secret_calculation(num) {
var result = num * 5;
return result;
}
http.createServer(function (req, res) {
fs.readFile('app.html', function (err, data) {
if (err) {
console.log(err);
}
res.writeHead(200, {'Content-Type': 'text/html'});
res.write(data);
res.end();
});
fs.readFile('app.css', function (err, data) {
if (err) {
console.log(err);
}
res.writeHead(200, {'Content-Type': 'text/css'});
res.write(data);
res.end();
});
fs.readFile('app.js', function (err, data){
if (err) {
console.log(err);
}
res.writeHead(200, {'Content-Type': 'text/javascript'});
res.write(data);
res.end();
});
}).listen(8000);
var apiApp = express();
// to be able to use request.body for complex parameters
apiApp.use(bodyParser.json());
apiApp.use(function (req, res, next) {
// to restrict api calls to the ones coming from your website
res.append('Access-Control-Allow-Origin', <url of your domain, with port>);
res.append('Access-Control-Allow-Methods', 'GET,PUT,POST,DELETE');
res.append('Access-Control-Allow-Headers', 'Content-Type');
next();
});
//the list of routes your API will respond to, it is better to move this code in another file as it can be huge
apiApp.get('/secret_calculation/:number', function(req, res) {
var num = parseInt(req.params.number, 10);
var result = secret_calculation(num);
res.send(JSON.stringify(result));
});
// define as much routes as you want like the model above, using apiApp.post if you want to post data and retrieve it with req.body...etc
// run the API server like your http server above
apiApp.listen(8001, function (err) {
if (err) {
return console.error(err);
}
console.info(`apiApp listening at ${<url to your domain, without port>}:${8001}`);
});
Тогда в вашем приложении вы сможете получить значение из secret_calculation, вызвав (используя fetch, но подойдет любая другая библиотека ajax):
function get_input() {
const init = {
'GET', // or POST if you want to POST data
headers: { 'Content-Type': 'application/json', 'Accept-Encoding': 'identity' },
cache: 'default',
// body: data && JSON.stringify(data), if you want to POST data through request body
};
var user_input = parseInt(document.getElementById("in_put").value);
user_input = user_input || 0;
fetch('/secret_calculation/' + user_input, init)
.then( function(response) {
var ans = document.getElementById("answer");
ans.innerHTML = response;
})
.catch ( function(error) {
console.log('something bad happened:', error);
});
}
Экспресс-справка по js
Простое руководство по созданию REST API за 5 минут с помощью Express (аналогично приведенному выше