Skip to content

Instantly share code, notes, and snippets.

@emmsdan
Last active October 22, 2021 22:37
Show Gist options
  • Save emmsdan/7597375b1eb651eb3883f9ff8ee84ca2 to your computer and use it in GitHub Desktop.
Save emmsdan/7597375b1eb651eb3883f9ff8ee84ca2 to your computer and use it in GitHub Desktop.
Basic things a backend nodejs Dev should know
// build any express app that shows backend skills
const skills = [
'deep database knowledge',
'deep security knowledge',
'deep testing (unit, integrated, and e2e)',
'worker_thread and clusters',
'networking'
]
// super important concept
const concepts = [
'learn what it is',
'how to use it efficiently',
'why it was included in nodejs',
'worker_thread'
];
// must know database concepts
const concepts = [
'indexes',
'queries',
'data structures',
'flows',
'processes',
'caching'
];
// important
const todo = [
'http',
'cookies',
'tcp',
]
// must know major aspect
const aspects = [
'major attackes',
'preventions and measures',
'tools',
'implementations'
];
// understand and implement concepts
const concepts = [
'patterns',
'tools eg. jest and jekins',
'uses'
];
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment