Lucas Bürgy's links
Tag cloud
Picture wall
Daily
RSS Feed
  • RSS Feed
  • Daily Feed
  • Weekly Feed
  • Monthly Feed
Filters

Links per page

  • 20 links
  • 50 links
  • 100 links

Filters

Untagged links
5 results tagged nodejs  ✕
Localization in Node.js and Express.js with i18n examples https://lokalise.com/blog/node-js-i18n-express-js-localization/
Mon Dec 23 01:37:10 2024
QRCode
nodejs i18n
Vue JavaScript Tutorial in Visual Studio Code https://code.visualstudio.com/docs/nodejs/vuejs-tutorial
Tue Sep 17 20:09:13 2019
QRCode
vuejs vscode nodejs
How to Use SSL/TLS with Node.js — SitePoint https://www.sitepoint.com/how-to-use-ssltls-with-node-js/
Mon Apr 1 11:16:46 2019
QRCode

Sans Express.js:

const https = require("https"),
          fs = require("fs");

const options = {
          key: fs.readFileSync("/etc/letsencrypt/live/example.com/privkey.pem"),
          cert: fs.readFileSync("/etc/letsencrypt/live/example.com/fullchain.pem")
};

https.createServer(options, function (req, res) {
          res.writeHead(200, {'Content-Type': 'text/html'});
          res.end('Hello World!');
}).listen(443);
ssl nodejs
nodemon https://nodemon.io/
Mon Apr 1 10:33:42 2019
QRCode

Nodemon is a utility that will monitor for any changes in your source and automatically restart your server.

nodejs linux
nodesource/distributions https://github.com/nodesource/distributions/blob/master/README.md
Tue Mar 26 20:20:29 2019
QRCode

How to install nodejs depending on your system

nodejs linux
1244 links, including 4 private
Shaarli - The personal, minimalist, super-fast, database free, bookmarking service by the Shaarli community - Theme by kalvn