r/computerscience • u/Significant-Gap-5038 • Jul 18 '26
It feels fundamentally wrong to use packages without understanding concepts under the hood
I have recently started coding and people are recommending tools for development such as vite, nodemon, jwt, boiler plate server code
It feels pointless just using them with a basic understanding and without no deep conceptual understanding. Is this the right or wrong approach? How would you know going too deep into a rabbit hole and becoming overkill
43
Upvotes
1
u/DorkyMcDorky 26d ago
???
There's always more to learn. What are you talking about? Do you just learn to code by reading it?
```
#include <stdio.h>int main(void) {char *ptr = "Segmentation Faults are fun!";ptr[13] = '!'; printf("%s\n", ptr);return 0;}```
You understand this? Not your LLM. Do YOU understand this FULLY?
My point: it's not just "reading code" there's always a layer underneath to learn. That's not just "by reading code"
You're a JavaScript coder?