A list of node.js modules categorised nicely. Worth bookmarking.

blake kathryn
𩵠avery cochrane š©µ


PR's Tumblrdome
NASA

izzy's playlists!
Claire Keane
art blog(derogatory)

⣠Chile in a Photography ā£
cherry valley forever

The Stonewall Inn
Cosimo Galluzzi

ā
wallacepolsom

ellievsbear
Today's Document
noise dept.

gracie abrams
seen from Türkiye
seen from Sweden
seen from Vietnam

seen from Malaysia
seen from United States
seen from France
seen from Greece

seen from Brazil
seen from United States
seen from Philippines

seen from Australia
seen from United States
seen from Malaysia
seen from Netherlands

seen from United States

seen from Malaysia
seen from Bosnia & Herzegovina
seen from United Kingdom
seen from Italy
seen from Russia
@nebulafoxscode
A list of node.js modules categorised nicely. Worth bookmarking.

Anya is live and ready to show you everything. Watch her strip, dance, and perform exclusive shows just for you. Interact in real-time and make your fantasies come true.
Free to watch ⢠No registration required ⢠HD streaming
Node Harmony Fail
I am a bleeding edge developer and that is why I work at Valis, but I digress. I have been playing with Node.js lately, mostly because my colleagues are fascinated by it and that I went to a Node.js workshop by Jack Franklin. Naturally, I wanted the latest JavaScript features to make my life easier. Problem is they are only available in Mozilla javascipt engines and Node.js uses V8. I remembered from the workshop that Node.js can allow for some new ECMAScript 6 extensions and so t is a case of doing this
node --harmony file.js
Which should mean I could write code like this
// MDN example var a = 5; var b = 10; if (a === 5) { let a = 4; // The scope is inside the if-block var b = 1; // The scope is inside the function console.log(a); // 4 console.log(b); // 1 } console.log(a); // 5 console.log(b); // 1
And I would be wrong
file.js:7 if (a === 5) { ^ SyntaxError: Illegal let declaration outside extended mode at Module._compile (module.js:439:25) at Object.Module._extensions..js (module.js:474:10) at Module.load (module.js:356:32) at Function.Module._load (module.js:312:12) at Function.Module.runMain (module.js:497:10) at startup (node.js:119:16) at node.js:901:3
And if this tweet is anything to go by it has been broken for a long time. In conclusion don't use let.