Posts by Daniel Koch • 159 points
2 posts
-
2
votes1
answer78
viewsA: NPM - save x save-Exact x shrinkwrap
npm i my-pack --save This is the default command for installing packages by npm. How did you use --save, he will also save that in your package.json for future installation: "dependencies": {…
-
0
votes3
answers176
viewsA: Dynamic allocation with a void function
It’s no nonsense. In function libraries, it is very common to have routines that take care of memory space allocation and misallocation, primarily for more complex structures. What is wrong here is…