Socket
Socket
Sign inDemoInstall

jan

Package Overview
Dependencies
Maintainers
1
Versions
4
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

jan

Jan is a simple library for making HTTP requests.


Version published
Weekly downloads
17
increased by466.67%
Maintainers
1
Weekly downloads
 
Created
Source

Jan NPM Version Bower Version

Join the chat at https://gitter.im/synacorinc/jan

Jan

Jan is a simple library for making HTTP requests.
Issue network calls without dealing with awkward legacy API signatures.

Documentation

Build Status Dependency Status devDependency Status

Deploy


Why Jan?

"AJAX" just isn't a thing anymore.
It's 2014, we're on Web 3.0 or some "living document" version of the web by now.
We don't need to invent names for basic concepts like making HTTP requests.

Ask yourself:

  • Am I using a DOM manipulation library to do networking?
  • Would I consider using a NPM package that both rendered HTML templates and abstracted WebSocket communications?

Application architecture is easier when it isn't tied to monolithic frameworks.
It's time to drop those aging AJAX APIs and get back to the basics of what makes networking simple.

Usage

Basic GET request:

jan.get('/api/foo.json', function(err, res, json) {
	console.log(err, res, json);
});

POST request:

jan.post({
	url : '/api/todos',
	body : 'name=Get%20gas'
}, function(err, res, data) {
	if (err) throw err;
	alert('ToDo created: ' + data.name);
});

Request with all options:

jan({
	method : 'PUT',
	url : 'http://foo.com/bar.json',
	headers : {
		'Content-Type' : 'application/json'
	},
	user : 'bob',
	pass : 'firebird',
	body : JSON.stringify({ key : 'value' })
}, function(err, res) {
	if (err) throw err;
	console.log(res);
});

Plugins / Events

Hook requests with the req event:

// A plugin that adds an API key header to all requests:
jan.on('req', function(e) {
	e.req.headers['x-api-key'] = 'my-super-secure-api-key';
});

Hook responses with the res event:

// A plugin that parses CSV responses
jan.on('res', function(e) {
	if (e.res.headers['content-type']==='text/csv') {
		e.res.data = e.res.csv = e.res.text.split(/\s*\,\s*/g);
	}
});

Instantiation

Via node / browserify:

var jan = require('jan');

Via AMD / requirejs:

define(['jan'], function(jan) {

});

Via globals / script tag:

<script src="jan.js"></script>
<script>
	jan;  // now it's exposed as a "jan" global
</script>

Installation

Installation via Bower: (Recommended)

bower install jan

Manual Download:

  • jan.js - full source with comments, for development
  • jan.min.js - minified, for production

License

BSD


Jan Hankl

Keywords

FAQs

Package last updated on 30 Mar 2016

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

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc