Security News
Node.js EOL Versions CVE Dubbed the "Worst CVE of the Year" by Security Experts
Critics call the Node.js EOL CVE a misuse of the system, sparking debate over CVE standards and the growing noise in vulnerability databases.
Jan is a simple library for making HTTP requests.
Issue network calls without dealing with awkward legacy API signatures.
"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.
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);
});
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);
}
});
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 via Bower: (Recommended)
bower install jan
Manual Download:
BSD
FAQs
Jan is a simple library for making HTTP requests.
The npm package jan receives a total of 33 weekly downloads. As such, jan popularity was classified as not popular.
We found that jan 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.
Security News
Critics call the Node.js EOL CVE a misuse of the system, sparking debate over CVE standards and the growing noise in vulnerability databases.
Security News
cURL and Go security teams are publicly rejecting CVSS as flawed for assessing vulnerabilities and are calling for more accurate, context-aware approaches.
Security News
Bun 1.2 enhances its JavaScript runtime with 90% Node.js compatibility, built-in S3 and Postgres support, HTML Imports, and faster, cloud-first performance.