sh 简单的脚本shell自动安装nodejs + build webserverjs

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了sh 简单的脚本shell自动安装nodejs + build webserverjs相关的知识,希望对你有一定的参考价值。

cd ~/
curl -sL https://deb.nodesource.com/setup_4.x | sudo -E bash - sudo apt-get install -y nodejs sudo apt-get install -y build-essential

cat >>server.js<<<EOF
var http = require('http');
http.createServer(function (req, res) {
    res.writeHead(200, {'Content-Type': 'text/html'});
    res.write('Hello <b>Dunia</b>!');
    res.end();
}).listen(8000);

console.log("server sedang berjalan di http://localhost:8000");
EOF

node webserver.sh

以上是关于sh 简单的脚本shell自动安装nodejs + build webserverjs的主要内容,如果未能解决你的问题,请参考以下文章

shell实现SSH自动登陆

shell脚本 自动安装问题

Linux通用KVM自动安装Shell脚本(兼容所有Linux发行版/CentOS/Ubuntu)

CentOS7通过shell脚本自动部署oracle12c

shell脚本自动安装nginx

1、Mysql自动安装5.7Shell脚本