Research
Security News
Malicious npm Packages Inject SSH Backdoors via Typosquatted Libraries
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
#unio
##One REST API Client for All.
The Unio
client is an easily-extensible REST API Client that supports any REST API that can be described in JSON.
The initiative behind unio
is to describe REST APIs in simple, readable JSON files. This allows them to be imported into unio
, and it will know automatically how to talk to the web service from the JSON spec. You can simply import the spec, and start making requests to the API right away. This makes it easy for you to test, use and reuse REST APIs by saving you the time of writing an API client for every new service that pops up.
Currently, the APIs implemented out-of-the-box with unio
are:
Feel free to fork and add new REST API specs!
#Install
npm install unio
#Usage
var unio = require('unio')
//
// with the Facebook Search API
//
var params = {
q: 'coffee',
access_token: 'YOUR_FB_ACCESS_TOKEN'
}
unio()
.use('fb')
.get('search', params, function (err, reply) {
console.log('first search result', reply.data[0])
})
//
// with the Twitter Search API
//
unio()
.use('twitter')
.get('search', { q: 'banana' }, function (err, reply) {
console.log('search results:', reply)
})
//
// use the Twitter REST API to post a tweet
//
var params = {
status: 'tweeting using unio! :)',
oauth: {
consumer_key: '...',
consumer_secret: '...',
token: '...',
token_secret: '...',
}
}
unio()
.use('twitter')
.post('statuses/update', params, function (err, reply) {
//...
})
//
// with the Github API
//
unio()
.use('github')
.get('user', { access_token: 'ACCESS-TOKEN' }, function (err, reply) {
//...
})
//
// import a JSON spec from the local filesystem
//
unio()
.spec('./path/to/json/file')
.use('myspec')
.post('blah', function (err, reply) {
//...
})
//
// add a new spec directly
//
var apiSpec = {
name: 'api-name',
api_root: 'http://api.something.com',
resources: [
{
path: 'some/resource',
methods: [ 'post' ],
params: {
foo: 'required',
bar: 'optional'
}
},
// other resource entries here...
]
}
unio()
.spec(apiSpec)
.use('api-name')
.post('some/resource', { foo: 123 }, function (err, reply) {
//...
})
#API:
##.use(name)
Tells unio
that the next request you make will be to the API whose spec has the name name
.
##.spec(spec)
Adds a new REST API spec to the unio
client. Spec
can be:
The specs that unio
currently supports out-of-the-box are in the specs folder. See the Facebook spec and the Twitter spec as examples.
##.get(resource, [ params, callback ])
GET a REST API resource
, with optional params object for the request, and an optional callback
that has the following signature: function (err, reply)
.
##.post(resource, [ params, callback ])
See .get()
-> same thing but using POST.
##.patch(resource, [ params, callback ])
See .get()
-> same thing but using PATCH.
##.put(resource, [ params, callback ])
See .get()
-> same thing but using PUT.
##.delete(resource, [ params, callback ])
See .get()
-> same thing but using DELETE.
##Defining a Unio Spec
unio
is intended to make it as easy/painless as possible to talk to HTTP APIs.
Here's an example of what a spec looks like:
{
name: 'some-api',
api_root: 'http://api.something.com',
resources: [
{
path: 'users/:id',
methods: [ 'get', 'put' ],
params: {
id: 'required'
}
},
{
path: 'notes',
methods: [ 'post' ],
params: {
title: 'required',
text: 'required',
tags: 'optional'
}
},
{
name: 'friends',
path: 'friends.json',
methods: [ 'post' ],
params: {
id: 'required'
}
}
// other resource entries here...
]
}
###name
(String)
Each unio
spec must have a name
. This allows you to .use() the spec and start making requests.
###api_root
(String)
The api_root
specifies the root url where the API resources are located.
###resources
(Array)
Array of API resources.
##Defining a Resource
Each object in the resources
array represents a resource. Each resource must contain the following keys:
####path
(String)
URI where the resource is located, without a leading slash (e.g. posts/newest) or a full URL (e.g. https://api.bar.com).
####name
(String)
Optional name of the resource. When you make a request with unio, for example with .get(resource, ...)
, you can specify the resource by its name
value rather than by its path
. Think of it like an alias path
value for the resource.
E.g. If the following resource is specified:
{
name: 'statuses/update',
path: 'statuses/update.json',
methods: [ 'post' ],
params: {
foo: 'required'
}
}
You can then request the resource by specifying its name OR its path:
// GET a resource by specifying its `name`
unio()
.use('...')
.get('statuses/update', params, callback)
// GET a resource by specifying its `path`
unio()
.use('...')
.get('statuses/update.json', params, callback)
####methods
(Array)
HTTP verbs that may be used to request the resource (allowed: "GET", "POST", "PUT", "DELETE", "PATCH").
####params
(Object)
Object representing the parameters accepted by the resource. Each parameter must be marked "optional" or "required".
npm test
See PyUnio by Mihir Singh (@citruspi) for a Python implementation of unio
.
(The MIT License)
Copyright (c) by Tolga Tezel tolgatezel11@gmail.com
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
FAQs
One REST API Client for All.
The npm package unio receives a total of 1 weekly downloads. As such, unio popularity was classified as not popular.
We found that unio demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer 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.
Research
Security News
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
Security News
MITRE's 2024 CWE Top 25 highlights critical software vulnerabilities like XSS, SQL Injection, and CSRF, reflecting shifts due to a refined ranking methodology.
Security News
In this segment of the Risky Business podcast, Feross Aboukhadijeh and Patrick Gray discuss the challenges of tracking malware discovered in open source softare.