chore: added notes about m365 cli

This commit is contained in:
Michele Cereda
2023-04-06 18:05:22 +02:00
parent af3f626d8f
commit 7d120a02f6
3 changed files with 143 additions and 0 deletions

34
knowledge base/node.js.md Normal file
View File

@@ -0,0 +1,34 @@
# Node.js
Open-source, cross-platform JavaScript runtime environment.
## Table of contents <!-- omit in toc -->
1. [TL:DR](#tldr)
1. [Further readings](#further-readings)
1. [Sources](#sources)
## TL:DR
```sh
# Use a custom CA certificate.
export NODE_EXTRA_CA_CERTS='path/to/trusted/ca/cert.pem'
```
## Further readings
- [Website]
- [`npm`][npm]
## Sources
All the references in the [further readings] section, plus the following:
<!-- project's references -->
[website]: https://nodejs.org/en
<!-- internal references -->
[further readings]: #further-readings
[npm]: npm.md
<!-- external references -->