Skip to content

foysalit/ronin-api-ts

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

4 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Ronin Api Wrapper

To use the package, follow the below steps:

  • Install from npm npm i ronin-client
  • Import the client class in your js code import RoninClient from 'ronin-client'
  • Instantiate the class with your api token and subdomain:
const ronin = new RoninClient({
    subdomain: 'my-domain',
    token: 'mylongpa55word'
});
  • Through the ronin variable, you can now access list, create, udpate etc. methods for various modules such as client, contact, invoice etc.
// get a list of clients
const clients = await ronin.clients.list();

// get a list of contacts
const contacts = await ronin.contacts.list();

Todo

  • Build pagination.
  • Add missing modules.
  • Add more tests.

About

npm package for ronin api. written in typescript.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published