Pinned Loading
-
oodler.js - node oodler and visit lo...
oodler.js - node oodler and visit localhost in browser and lol 1//node oodler and visit localhost in browser and lol
23var http = require('http')
4http.createServer( (req,res) => {
5res.writeHead(200, {'contentType' : 'text/html'})
-
Fibbonacier.js - Someone showed me a...
Fibbonacier.js - Someone showed me a bad example of array restructuring yesterday. i thought this was prettier. 1let Fibbonacier = function() {
2let cache = [1,1]
3let step = () => {
4let nums = [...cache]
5let [a,b] = [nums.pop() || 1, nums.pop() || 1]
-
websocket proxy nodejs
websocket proxy nodejs 1// proxies requests to /folder to / on 8081
2// proxies requests to /folder2 to /folder2/ on 8081
3// all other requests sent to 8080
4// listens on 80
5 -
Present.js
Present.js Public25 line express webserver to present simple files or api responses.
JavaScript
Something went wrong, please refresh the page to try again.
If the problem persists, check the GitHub status page or contact support.
If the problem persists, check the GitHub status page or contact support.