New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

feedsme-api-client

Package Overview
Dependencies
Maintainers
5
Versions
3
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

feedsme-api-client

Simple API client to work with the feedsme change service

3.0.0
latest
npm
Version published
Maintainers
5
Created
Source

feedsme-api-client

The feedsme-api-client is an API client for the feedsme build service.

Install

Install feedsme-api-client from the npm registry:

npm install --save feedsme-api-client

API

In all examples we assume that you've already initialized the client as followed:

'use strict';

var Feedsme = require('feedsme-api-client');

var feedsme = new Feedsme('url-to-the-service');

As you can see in the example above, the Feedsme constructor requires one argument:

  • The URL of the feedsme API where we should send the requests to.

build

Trigger a new build on feedsme service.

feedsme.change({ data: {
  name: 'name of the module'
}}, function () {

});

Tests

npm test

License

MIT

Keywords

feedsme

FAQs

Package last updated on 16 Jan 2019

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts