Node: Difference between revisions

From Fundamental Ramen
Jump to navigation Jump to search
(Created page with "* https://github.com/mysqljs/mysql")
 
 
(24 intermediate revisions by the same user not shown)
Line 1: Line 1:
= Frequently Used Commands =
== nvm: nodejs version management ==
<syntaxhighlight lang="bash">
nvm list
nvm list available
nvm install lts
nvm use 24.18.0
node -v
</syntaxhighlight>
== mermaid: install and test ==
<syntaxhighlight lang="bash">
npm install -g @mermaid-js/mermaid-cli
mmdc -V
mmdc -i test.mmd
mmdc -i test.mmd -o test.svg
mmdc -i test.mmd -o test.png
mmdc -i test.mmd -o test.pdf
mmdc -i test.mmd -o -
</syntaxhighlight>
= Resources =
* [[Node/TypeORM]]
* [[Node/Sequelize]]
* [[Node/Tools]]
* [[Node/ReactNative]]
* [[Node/Crypto]]
* https://www.npmjs.com/package/ajv
* https://www.npmjs.com/package/validator
* https://github.com/mysqljs/mysql
* https://github.com/mysqljs/mysql
* https://expressjs.com/
* http://learnboost.github.io/cluster/
* https://github.com/expressjs/cors#readme
* https://github.com/uuidjs/uuid#readme
* https://github.com/axios/axios
* https://www.npmjs.com/package/crypto (Deprecated)
* https://www.npmjs.com/package/request (Deprecated)
* https://www.npmjs.com/package/fs (Security holding)

Latest revision as of 03:16, 2 July 2026

Frequently Used Commands

nvm: nodejs version management

nvm list
nvm list available
nvm install lts
nvm use 24.18.0
node -v

mermaid: install and test

npm install -g @mermaid-js/mermaid-cli
mmdc -V
mmdc -i test.mmd
mmdc -i test.mmd -o test.svg
mmdc -i test.mmd -o test.png
mmdc -i test.mmd -o test.pdf
mmdc -i test.mmd -o -

Resources