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

# Development

> Guide to setting up the development environment and running tests for the Locker Secrets NodeJS SDK

## Development

Install the required packages:

```bash theme={null}
npm install
```

### Running tests

Create a `.env` file with the required access keys (refer to `.env.example`).

To run all tests, use:

```bash theme={null}
npm test
```

To run specific tests, update `mocharc.js`:

```javascript theme={null}
ignore: [
  // './tests/index.spec.ts', // Comment the file you want to test
  './tests/sync.spec.ts',
  './tests/invalid.spec.ts',
  './tests/readonly.spec.ts'
]
```
