# amble

> a nice watcher for software development

Latest version **1.3.0** (published 2021-02-22) · MIT license · 0 weekly downloads

## Install

```sh
npm install amble
pnpm add amble
yarn add amble
bun add amble
```

Provides the command `amble`.

## Health

**Score 15/100 (F)** — status: abandoned.

Positive: no vulnerabilities.

Warnings: low downloads; no types; no esm support.

Negative: abandoned; low maintenance score.

## Facts

| | |
|---|---|
| Version | 1.3.0 |
| Published | 2021-02-22 |
| First published | 2017-09-27 |
| Weekly downloads | 0 |
| License | MIT |
| TypeScript types | none |
| Module format | CommonJS |
| Dependencies | 2 |
| Unpacked size | 4.4 KB |
| Known vulnerabilities | 0 |
| Install scripts | no |
| GitHub stars | 2 |
| Author | Spencer Kelly |
| Maintainers | spencermountain |

## Links

- npm: https://www.npmjs.com/package/amble
- Repository: https://github.com/spencermountain/amble
- Homepage: https://github.com/spencermountain/amble#readme
- Issues: https://github.com/spencermountain/amble/issues
- npm.io page: https://npm.io/package/amble

## Dependencies (2)

- [chokidar](https://npm.io/package/chokidar.md) 3.5.1
- [colorette](https://npm.io/package/colorette.md) 1.2.1

## Recent versions

- 1.3.0 (latest) — 2021-02-22
- 1.2.0 — 2020-11-26
- 1.1.0 — 2020-07-29
- 1.0.0 — 2020-04-16
- 0.0.7 — 2018-11-24
- 0.0.6 — 2018-04-24
- 0.0.5 — 2017-10-16
- 0.0.4 — 2017-10-05
- 0.0.3 — 2017-10-05
- 0.0.2 — 2017-10-05
- 0.0.1 — 2017-09-27

## README

# amble

a clean way to 'hot-reload' a node.js script in the console.

`npm i amble`

then in your project

`amble ./toRun.js`

this will run file and watch all relevant files recursively.

i like to create a `./scratch.js` file, with my current stuff in it, so i run put this in my package.json:

```json
{
  "scripts": {
    "watch": "amble ./scratch.js"
  }
}
```

### javascript access

```js
var amble = require('amble')
amble({ exec: './scratch', watch: './' })
```

if you want to pass arguments into node, put them after your filename:

```
amble scratch.mjs --experimental-modules
```

huge thanks to Paul Miller's [chokidar library](https://github.com/paulmillr/chokidar)

MIT

---
_Source: https://npm.io/package/amble · Machine-readable twin of the npm.io package page. Health data is recomputed on every publish._
