mirror of
https://github.com/luzhisheng/js_reverse.git
synced 2025-04-12 03:27:07 +08:00
19 lines
457 B
JavaScript
19 lines
457 B
JavaScript
const express = require('express');
|
||
const app = express();
|
||
const encryption = require("../encryption");
|
||
var bodyParser = require('body-parser');
|
||
app.use(bodyParser());
|
||
|
||
|
||
app.post('/get_sign', function (req, res) {
|
||
let result = req.body;
|
||
let sign = result.sign;
|
||
console.log(sign);
|
||
result = encryption.encryption(sign + "hasaki");
|
||
res.send(result.toString());
|
||
});
|
||
|
||
app.listen(3001, () => {
|
||
console.log("开启服务,端口3001")
|
||
});
|