# @codecraftkit/api-meteor

> cc api

Latest version **1.0.0** (published 2026-03-23) · MIT license · 0 weekly downloads

## Install

```sh
npm install @codecraftkit/api-meteor
pnpm add @codecraftkit/api-meteor
yarn add @codecraftkit/api-meteor
bun add @codecraftkit/api-meteor
```

## Health

**Score 45/100 (D)** — status: stable.

Positive: no vulnerabilities.

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

## Facts

| | |
|---|---|
| Version | 1.0.0 |
| Published | 2026-03-23 |
| First published | 2020-08-18 |
| Weekly downloads | 0 |
| License | MIT |
| TypeScript types | none |
| Module format | CommonJS |
| Dependencies | 1 |
| Unpacked size | 17.4 KB |
| Known vulnerabilities | 0 |
| Install scripts | no |
| Author | development code craft |
| Maintainers | development.fino, cc-dev04 |
| Keywords | meteor, http, request |

## Links

- npm: https://www.npmjs.com/package/@codecraftkit/api-meteor
- Repository: https://github.com/codecraftdevteam/api-meteor
- Homepage: https://github.com/codecraftdevteam/api-meteor.git
- Issues: https://github.com/codecraftdevteam/api-meteor/issues
- npm.io page: https://npm.io/package/@codecraftkit/api-meteor

## Dependencies (1)

- [axios](https://npm.io/package/axios.md) ^1.9.0

## Alternatives

- [launchdarkly-js-client-sdk](https://npm.io/package/launchdarkly-js-client-sdk.md) — 2.5M weekly downloads
- [@elastic/elasticsearch](https://npm.io/package/@elastic/elasticsearch.md) — 2.1M weekly downloads
- [@c8y/client](https://npm.io/package/@c8y/client.md) — 15.3K weekly downloads
- [@signaldb/maverickjs](https://npm.io/package/@signaldb/maverickjs.md) — 1.7K weekly downloads
- [@bbc/http-transport-cache](https://npm.io/package/@bbc/http-transport-cache.md) — 1.2K weekly downloads

## Recent versions

- 1.0.0 (latest) — 2026-03-23
- 0.0.5 — 2020-12-09
- 0.0.4 — 2020-08-18
- 0.0.3 — 2020-08-18
- 0.0.2 — 2020-08-18
- 0.0.1 — 2020-08-18

## README

# DEPRECATED

Code Craft - Finance Api
==========================================

This package is a library that is used to make http requests to the Finance API.

## INSTALLING


### via npm
* `npm install cc-api`

### from source
* `git clone https://bitbucket.org/FinoCodeLab/cc-api.git`

## REQUIREMENTS
* MeteorJS
* NodeJs
* Npm

## HOW IS IT USED?
```
var api = new(require('cc-api'))({url: '', debug_mode: false});
```
###### OR
```
var ccApi = require('cc-api');
var api = new ccApi({key:'', url: '', debug_mode: false});
```
###### PARAMS
* url: String, Endpoint ej: http://www.domine.com
* key: String, Security key generated. Optional
* debug_mode: Boolean, This parameter by default is false.

--------
```
let url = '/my/route';
let data: {
    ...
};

api.get(url, data).then(res => {
    console.log(res);
}).catch(err => {
    console.log(err);
});
```
###### PARAMS
* url: String, final part of the endpoint, ex: /my/route
* data: Object

> If you want to make a request to an endpoint other than the one entered in the initial configuration parameters, you can send the variable ``overwriteEndpoint: true`` within the same object "data". This parameter indicates that the endpoint will be replaced by the url that is being entered in the method.
> Ex:
```
let url = 'http://www.dominio.com/api/my/route';
let data: {
    overwriteEndpoint: true,
    ...,
    ...,
};

api.get(url, data).then(res => {
    console.log(res);
}).catch(err => {
    console.log(err);
});
```

NOTA: All methods use promises.

--------

### AVAILABLE METHODS

* GET
* POST
* PUT
* DELETE

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