Last active
October 22, 2021 22:37
-
-
Save emmsdan/7597375b1eb651eb3883f9ff8ee84ca2 to your computer and use it in GitHub Desktop.
Basic things a backend nodejs Dev should know
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// 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' | |
] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// super important concept | |
const concepts = [ | |
'learn what it is', | |
'how to use it efficiently', | |
'why it was included in nodejs', | |
'worker_thread' | |
]; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// must know database concepts | |
const concepts = [ | |
'indexes', | |
'queries', | |
'data structures', | |
'flows', | |
'processes', | |
'caching' | |
]; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// important | |
const todo = [ | |
'http', | |
'cookies', | |
'tcp', | |
] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// must know major aspect | |
const aspects = [ | |
'major attackes', | |
'preventions and measures', | |
'tools', | |
'implementations' | |
]; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// 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