Skip to content

Commit

Permalink
Update notes.md
Browse files Browse the repository at this point in the history
  • Loading branch information
wandyezj committed Feb 16, 2024
1 parent 77e8948 commit e073c8e
Showing 1 changed file with 21 additions and 0 deletions.
21 changes: 21 additions & 0 deletions docs/notes.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,7 @@ Designed for developing TypeScript NPM libraries. The layout can be applied to o
- [Visual Studio Code Extensions](#visual-studio-code-extensions)
- [Tool Notes](#tool-notes)
- [GitHub](#github)
- [NVM](#nvm)
- [NPM](#npm)
- [NPM Commands](#npm-commands)
- [Prettier](#prettier)
Expand Down Expand Up @@ -181,6 +182,7 @@ should be used to build everything and test the package.
- [GitHub CLI](https://cli.github.com/manual/gh_help_reference)
- [GitHub Actions](https://github.com/features/actions)
- [Visual Studio Code](https://code.visualstudio.com/)
- [nvm]https://github.com/coreybutler/nvm-windows)
- [npm](https://www.npmjs.com/)
- [node](https://nodejs.org/) [download node lts](https://nodejs.org/en/download/)
- [TypeScript](https://www.typescriptlang.org/)
Expand Down Expand Up @@ -238,6 +240,17 @@ cSpell:ignore dbaeumer esbenp DavidAnson

## Tool Notes

### NVM

[NVM setup](https://learn.microsoft.com/en-us/windows/dev-environment/javascript/nodejs-on-windows#install-nvm-windows-nodejs-and-npm)

NVM is used to deal with node versions.

> nvm install lts
> nvm use lts

### NPM

#### NPM Commands
Expand Down Expand Up @@ -490,6 +503,14 @@ fs.cpSync(from, to);

Unneeded, use built in node 'child_process' functions.

```typescript
import {execSync} from "child_process";

const command = "npm run build";
execSync(command);

```

### fetch

```typescript
Expand Down

0 comments on commit e073c8e

Please sign in to comment.