> ## Documentation Index
> Fetch the complete documentation index at: https://docs.rasmusj.dk/llms.txt
> Use this file to discover all available pages before exploring further.

# NodeJS

> Node.js development tips and tools

## Check unused dependencies

### Install depcheck globally

```bash theme={null}
# npm
npm install -g depcheck

# yarn
yarn global add depcheck

# pnpm
pnpm install -g depcheck
```

```sh title="Run depcheck" theme={null}
depcheck
```
