npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

solicit

v1.0.3

Published

a declarative http client for node and browser

Downloads

5

Readme

solicit

A declarative http client based off superagent. Versions available for both the browser and node with the same API and shared test suite.

Installation

npm install solicit

then in your app:

import {get,post,del} from 'solicit'

Example

get('component.io/components/all').read(console.log) // => a whole lot of JSON

API

Each http verb has a corresponding helper function for making that type of request. Each function will return a Request. Requests are deferred results so you are free to configure them as much as you like with the methods mentioned below then call read() or then() to actually send the request and read the response. The main verbs you will be using are:

  • get
  • post
  • put
  • head
  • del (delete is a reserved word in JS)

Request.set(field:String|Object, val:String)

Set header field to val, or multiple fields with one object.

Examples:

get('/')
  .set('Accept', 'application/json')
  .set('X-API-Key', 'foobar')
  .read(callback)
get('/')
  .set({ Accept: 'application/json', 'X-API-Key': 'foobar' })
  .read(callback)

Request.get(field)

Get request header field.

Request.query(val:Object|String)

Add query-string val.

Examples:

get('/shoes')
  .query('size=10')
  .query({ color: 'blue' })

Request.type(type)

Set the "Content-Type" header. Common types can be set with a shorthand string:

post('/')
  .type('application/json')
  .send(jsonstring)
  .read(callback)
post('/')
  .type('json')
  .send(jsonstring)
  .read(callback)

Request.accept(type)

Set the "Accept" header. As with Request.type() shorthand strings are allowed

Request.timeout(ms)

Set timeout to ms.

Request.clearTimeout()

Clear previous timeout.

Request.abort()

Abort and clear timeout.

Request.agent(agent:http.Agent)

Gets/sets the Agent to use for this HTTP request. The default (if this function is not called) is to opt out of connection pooling (agent: false).

Request.send(data:String|Object)

Send data, defaulting the .type() to "json" when an object is given.

Examples:

// manual json
post('/user')
  .type('json')
  .send('{"name":"tj"}')
  .read(callback)
// auto json
post('/user')
  .send({ name: 'tj' })
  .read(callback)
// manual x-www-form-urlencoded
post('/user')
  .type('form')
  .send('name=tj')
  .read(callback)
// auto x-www-form-urlencoded
post('/user')
  .type('form')
  .send({ name: 'tj' })
  .read(callback)
// string defaults to x-www-form-urlencoded
post('/user')
  .send('name=tj')
  .send('foo=bar')
  .send('bar=baz')
  .read(callback)

Request.auth(user, pass)

Set Authorization field value with user and pass

Request.maxRedirects(n)

Set the max redirects to n.

Request.path(...)

Set the path. arguments is joined to form the path:

get('https://api.github.com')
  .path('repos', user, repo, 'tags')
  .read(callback)

Request.write(data:Buffer|String, [encoding='utf8'])

Write data to the socket.

Request.end([data]:Buffer|String, [encoding='utf8'])

send request

Request.pipe(stream, options)

Pipe the request body to stream