Skip to content

Instantly share code, notes, and snippets.

View tomexx's full-sized avatar
馃捇
Available for part-time projects

Tomas Listiak tomexx

馃捇
Available for part-time projects
View GitHub Profile
@fgilio
fgilio / axios-catch-error.js
Last active June 18, 2025 11:09
Catch request errors with Axios
/*
* Handling Errors using async/await
* Has to be used inside an async function
*/
try {
const response = await axios.get('https://your.site/api/v1/bla/ble/bli');
// Success 馃帀
console.log(response);
} catch (error) {
// Error 馃槰
@romainl
romainl / javascript_deep_dive.md
Created October 7, 2017 19:28 — forked from faressoft/javascript_deep_dive.md
JavaScript Deep Dive to Crack The JavaScript Interviews
@nijicha
nijicha / install_nodejs_and_yarn_homebrew.md
Last active February 24, 2025 17:32
Install NVM, Node.js, Yarn via Homebrew