Skip to content

Commit 2e0cc25

Browse files
committed
Bumped version
Signed-off-by: Vishal Rana <[email protected]>
1 parent 5826400 commit 2e0cc25

14 files changed

+156
-1185
lines changed

README.md

-27
Original file line numberDiff line numberDiff line change
@@ -7,31 +7,4 @@
77
NPM `npm install --save labstack`<br>
88
Yarn `yarn add labstack`
99

10-
## Quick Start
11-
12-
[Sign up](https://labstack.com/signup) to get an API key
13-
14-
Create a file `app.js` with the following content:
15-
16-
```js
17-
const {Client, APIError} = require('labstack')
18-
19-
const client = new Client('<API_KEY>')
20-
const geocode = client.geocode()
21-
22-
geocode.address('eiffel tower')
23-
.then(response => {
24-
console.info(response)
25-
})
26-
.catch(error => {
27-
console.error(error)
28-
})
29-
```
30-
31-
From terminal run your app:
32-
33-
```sh
34-
node app.js
35-
```
36-
3710
## [Docs](https://labstack.com/docs) | [Forum](https://forum.labstack.com)

index.js

+1-5
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,3 @@
11
module.exports = {
2-
Client: require('./lib/client').Client,
3-
APIError: require('./lib/client').APIError,
4-
Hub: require('./lib/hub'),
5-
express: require('./lib/express'),
6-
koa: require('./lib/koa')
2+
Hub: require('./lib/hub')
73
}

lib/client.js

-130
This file was deleted.

lib/cube.js

-102
This file was deleted.

lib/currency.js

-19
This file was deleted.

lib/email.js

-11
This file was deleted.

lib/express.js

-34
This file was deleted.

lib/geocode.js

-26
This file was deleted.

0 commit comments

Comments
 (0)