golb

NodeJS

Simple HTTP server

Commande pour créer un serveur web rapidement

npm install -g http-server
# now use the installed command
http-server

# or
npx http-server

Légende :

Reference : http-server

npm && npx

Here is some great npx commands

npx npm-check-updates

npx unimported

npm outdated
npx -p lolcatjs -p cowsay -c 'echo hello | cowsay | lolcatjs'

(stupid) tricks

// create a default value by constructing a fake similar object
const result = (playlist.tracks || { data: [] }).data;

// normal destructuring
const myObj = { hello: "world" };
const { hello: myVariable } = myObj;
console.log(myVariable); // "world"

// destructing object with key name
const keyName = "hello";
const { [keyName]: myVariable2 } = myObj;
console.log(myVariable2); // "world"

Discord Webhook Browser

const url = "https://discord.com/api/webhooks/..."
const data = {
    content: "my content",
    username: "log",
    avatar_url: "",
    embeds: [] // for many small messages
}
fetch(url, {
    method : "POST"
    body: data
});
// with axios
// axios.post(url, data);

Node.js must have

process.on('uncaughtException', (err, origin) => {
    console.error('Uncaught Exception origin ->', origin);
    console.error('Uncaught Exception err ->', err);
});

process.on('unhandledRejection', (reason, promise) => {
    console.error('Unhandled rejection promise ->', promise);
    console.error('Unhandled rejection reason  ->', reason);
});

NVM : node version manager

# download and install
# do the post-install
nvm install node
nvm use node

# others commands
nvm list # list versions
nvm ls-remote
nvm install 'lts/NAME' # download the version
nvm alias default lts # take lts as default

Speed up videos

const max = 16; // https://stackoverflow.com/a/32320020
const accelerate = (e) => e.playbackRate = max;
const videoAccelerate = (d) => [...d.getElementsByTagName("video")].forEach(accelerate);
videoAccelerate(document);
[...document.getElementsByTagName("iframe")].forEach((iframe)=> videoAccelerate(iframe.contentWindow.document));