All Questions
Tagged with revealing-module-pattern node.js
2 questions
2
votes
0
answers
48
views
The modularization of the Express entry point
I've been working on a project to make myself more comfortable with NodeJS, especially Express and TypeScript. Searching and reviewing a lot of approaches of the people, providing bootstraps for it, I ...
9
votes
1
answer
2k
views
Node module using promises and the revealing module pattern
Can someone give me some feedback on this pattern?
I am writing a node.js module that connects to a remote API, caches JSON, returns it as output. I have a cli wrapper script that uses the module, ...