![PyPI Now Supports iOS and Android Wheels for Mobile Python Development](https://cdn.sanity.io/images/cgdhsj6q/production/96416c872705517a6a65ad9646ce3e7caef623a0-1024x1024.webp?w=400&fit=max&auto=format)
Security News
PyPI Now Supports iOS and Android Wheels for Mobile Python Development
PyPI now supports iOS and Android wheels, making it easier for Python developers to distribute mobile packages.
@rexlabs/wings-node-api-client
Advanced tools
Very basic API client for node environments to deal with the wings API. It is build on top of the node-fetch
library.
const { create } = require('@rexlabs/wings-node-api-client')
const api = create({ baseUrl: 'http://wings.test/api/rex/' })
api.setAuthToken('xxx');
api('Listings::search', args).then(res => {
console.log({ res })
});
The client instance (api
in the example above) is an executable function in itself, which will trigger a post request to the given path. The second argument is an optional data object that will be used for the body, the third argument can be any options that will override the default options passed into the create
call.
The client also comes with the following extra methods:
// Set a specific header field
api.setHeader(headerKey, headerValue);
// Shortcut for `.setHeader('Authorization', 'Bearer ...')`
api.setAuthToken(token);
// Set a specific option (after creating the instance, but storing it on the instance)
api.setOption(optionKey, optionValue);
// Set multiple options
api.setOptions({ optionKey: optionValue });
// Get all records for a specific service
// It will fetch pages of 100 items (in parallel) until all are loaded!
api.searchAll('Listings', args).then(res => {
console.log({ res })
});
Install dependencies
$ yarn
Available Commands
$ yarn test # runs all units tests
$ yarn test:watch # runs unit tests when files change
Copyright (c) 2018 Rex Software All Rights Reserved.
FAQs
Wings Node Api Client
The npm package @rexlabs/wings-node-api-client receives a total of 18 weekly downloads. As such, @rexlabs/wings-node-api-client popularity was classified as not popular.
We found that @rexlabs/wings-node-api-client demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 27 open source maintainers collaborating on the project.
Did you know?
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.
Security News
PyPI now supports iOS and Android wheels, making it easier for Python developers to distribute mobile packages.
Security News
Create React App is officially deprecated due to React 19 issues and lack of maintenance—developers should switch to Vite or other modern alternatives.
Security News
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.