Skip to content

Commit

Permalink
chore: atualizar readme
Browse files Browse the repository at this point in the history
  • Loading branch information
AlexandreBellas committed Jan 21, 2024
1 parent 76c6e2d commit 018d56b
Showing 1 changed file with 4 additions and 18 deletions.
22 changes: 4 additions & 18 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,25 +24,13 @@ Para instalar, execute o comando:
npm i bling-erp-api
```

## Importação do módulo

### CommonJS

```js
const Bling = require('bling-erp-api')
```

### ES6

```ts
import Bling from 'bling-erp-api'
```

## Criação de uma nova conexão

Para criar uma conexão ao serviço do Bling, basta instanciar o objeto com a [API key](https://developer.bling.com.br/autenticacao) em seu construtor.

```js
import Bling from 'bling-erp-api'

const apiKey = 'sua_api_key'
const blingConnection = new Bling(apiKey)
```
Expand Down Expand Up @@ -102,11 +90,9 @@ Todas as entidades do Bling atualmente são permitidas para interação. São el
Para listar seus produtos, basta executar:

```js
// Também disponível como:
// import Bling from 'bling-erp-api'
const Bling = require('bling-erp-api')
const apiKey = 'sua_api_key'
import Bling from 'bling-erp-api'

const apiKey = 'sua_api_key'
const blingConnection = new Bling(apiKey)

const products = await blingConnection.produtos.get()
Expand Down

0 comments on commit 018d56b

Please sign in to comment.