nemento-parse

0.1.0 • Public • Published

Travis build status Code Climate Test Coverage Dependency Status devDependency Status

nemento-parse

Module which allow to build request to Parse.com API.

Installation

npm install --save nemento-parse

Usage

import Api from "nemento-parse";

Api.init({
  applicationId: "YOUR-APPLICATION-ID",
  appKey: "YOUR-APPLICATION-KEY (javascript key for browser / Rest key for node)"
});

Api.request()
  .path("users")
  .body({
    username: "test@tes.com",
    password: "123456"
  })
  .post()
  .then((newUser) => {
    console.log("New user");
  });

Todo

  1. Add fetch for node
  2. Reduce size
  3. Add tests

Contributing

  1. Fork it!
  2. Create your feature branch: git checkout -b my-new-feature
  3. Commit your changes: git commit -am 'Add some feature'
  4. Push to the branch: git push origin my-new-feature
  5. Submit a pull request :D

History

17.07.2015 init

Credits

Maciej Chmielarski m.chmielarski@gmail.com

Package Sidebar

Install

npm i nemento-parse

Weekly Downloads

1

Version

0.1.0

License

MIT

Last publish

Collaborators

  • evenemento