-
Notifications
You must be signed in to change notification settings - Fork 0
/
server.js
90 lines (75 loc) · 2.2 KB
/
server.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
// server.js
// where your node app starts
// init project
console.log("server had started")
var express = require('express');
var app = express();
// we've started you off with Express,
// but feel free to use whatever libs or frameworks you'd like through `package.json`.
// http://expressjs.com/en/starter/static-files.html
app.use(express.static('public'));
// http://expressjs.com/en/starter/basic-routing.html
app.get("/", function (request, response) {
response.sendFile(__dirname + '/views/index.html');
});
app.get("/dreams", function (request, response) {
response.send(dreams);
});
// could also use the POST body instead of query string: http://expressjs.com/en/api.html#req.body
app.post("/dreams", function (request, response) {
dreams.push(request.query.dream);
response.sendStatus(200);
});
// Simple in-memory store for now
var dreams = [
"Find and count some sheep",
"Climb a really tall mountain",
"Wash the dishes"
];
// listen for requests :)
var listener = app.listen(process.env.PORT, function () {
console.log('Your app is listening on port ' + listener.address().port);
});
console.log(process.env.PORT)
const spawn = require('child_process').spawn;
let ls = null;
// const ls = spawn('rename', ['.git', 'DOTGIT"]);
// const ls = spawn('ls', ['-la', 'DOTGIT"]);
if (false ) {
ls.stdout.on('data', (data) => {
console.log(`stdout: ${data}`);
});
ls.stderr.on('data', (data) => {
console.log(`stderr: ${data}`);
});
ls.on('close', (code) => {
console.log(`child process exited with code ${code}`);
});
}
const commands = {
version: "git --version",
toDOT: "mv .git DOTGIT",
frDOT: "mv DOTGIT .git",
lsdotgit: "ls -la DOTGIT",
x: "chmod +x my.bat",
mkBat: "echo echo stuff >> my.bat",
echo: "echo YAY!!!"
};
const command = commands.echo;
const exec = require('child_process').exec;
const execp = (command, opts) => {
const promise = new Promise((resolve,reject) => {
exec(command, opts, (err, stdout, stderr) => {
if (err) {
// console.error(err);
reject(err)
return;
}
resolve(stdout);
});
});
return promise;
}
execp(command, {})
.then( (result) => console.log(result))
.catch( ()=> console.log("fail"))