# speedcurve-api

> SpeedCurve API wrapper for NodeJS

Latest version **0.0.1** (published 2015-04-13) · 0 weekly downloads

> **Deprecated.** This package is deprecated.

## Install

```sh
npm install speedcurve-api
pnpm add speedcurve-api
yarn add speedcurve-api
bun add speedcurve-api
```

Provides the command `speedcurve-api`.

## Health

**Score 10/100 (F)** — status: deprecated.

Negative: deprecated.

## Facts

| | |
|---|---|
| Version | 0.0.1 |
| Published | 2015-04-13 |
| First published | 2015-04-13 |
| Weekly downloads | 0 |
| TypeScript types | none |
| Module format | CommonJS |
| Node | >=0.10 |
| Dependencies | 2 |
| Known vulnerabilities | 0 |
| Install scripts | no |
| GitHub stars | 1 |
| Author | Felipe Morais |
| Maintainers | felipemorais |
| Keywords | speedcurve, api, performance |

## Links

- npm: https://www.npmjs.com/package/speedcurve-api
- Repository: https://github.com/felipemorais/speedcurve-api
- Homepage: http://github.com/felipemorais/speedcurve-api
- Issues: http://github.com/felipemorais/speedcurve-api/issues
- npm.io page: https://npm.io/package/speedcurve-api

## Dependencies (2)

- [mocha](https://npm.io/package/mocha.md) ~1.12.0
- [commander](https://npm.io/package/commander.md) ~1.3.2

## Alternatives

- [mobx-react](https://npm.io/package/mobx-react.md) — 2.8M weekly downloads
- [rc-tree](https://npm.io/package/rc-tree.md) — 2.6M weekly downloads
- [@react-oauth/google](https://npm.io/package/@react-oauth/google.md) — 1.3M weekly downloads
- [@wagmi/connectors](https://npm.io/package/@wagmi/connectors.md) — 877.0K weekly downloads
- [vee-validate](https://npm.io/package/vee-validate.md) — 836.4K weekly downloads

## Recent versions

- 0.0.1 (latest) — 2015-04-13

## README

## SpeedCurve API Wrapper for NodeJS

SpeedCurve API Wrapper is a [NPM](https://npmjs.org) package that wraps [SpeedCurve API](http://api.speedcurve.com) for [NodeJS](https://nodejs.org) as a module and a command-line tool.

## Getting started

```bash
$ npm install speedcurve-api -g
```

## Basics

### Command line
```bash
$ speedcurve deploy --note="I'm a note" --detail="I'm a longer note with way more detail."
```

### Module
```javascript
var SpeedCurve = require('speedcurve-api');
var spd = new SpeedCurve('<your-api-key>', [dry-run]);

spd.deploy({
	  note: 'I am a note',
	  detail: 'I am a longer note with way more detail.'
	}, function(err, data) {
	  console.log(err || data);
	});
```

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