Yearly Archives: 2021
11 posts
Jak zainstalować node.js na freeBSD?
pkg install node
Jak zainstalować GIT na freeBSD?
pkg install git
how to debugging in node.js?
node –inspect-brk server.jsgo to chrome://inspect choose inspect link enjoy
How many times TEST_EVENT will be emitted?
const EventEmmiter = require(’events’); // setImmediate(()=> { myEmitter.emit(’TEST_EVENT’) }); const…