Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

fetch_json

Package Overview
Dependencies
Maintainers
1
Versions
7
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

fetch_json

A javasript library that makes it easy to retrieve JSON data from a JSON file

  • 1.0.3
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
0
decreased by-100%
Maintainers
1
Weekly downloads
 
Created
Source

fetchJSON

A Javascript library that allows to abstract all boilerplate from retrieving JSON data using the native ES6 fetch API.


Simple and easy to use, it only abstracts away all the boilerplate required for fetching json data. No other javascript library is required to use this library.


Installation/Use

Just like every library should, I tried to make fetchJSON compatible with quite everything I am aware of.

fetchJSON currently supports regular use (via HTML script tag), npm and require (and commonJS), AMD (and probably ES6 modules ?).

Therefore, here are two ways to install this library:

<html>
	<!-- [...] -->
	<head>
		<!-- [...] -->
		<script src="path/to/fetchJSON.js"></script>
		<!-- [...] -->
	</head>
	<!-- [...] -->
</html>

npm install fetch_json
const fetchJSON = require("fetch_json");

Simple use case

Sometimes, you just have that json file which's sole purpose is configuration. With fetchJSON, getting the data from this file is very easy:

//With fetchJSON
let config_data;
fetchJSON("../../someFolder/someFile.json", data=>config_data=data);

//Without fetchJSON
let config_data;
fetch("../../someFolder/someFile.json").then(response=>{
	/*gather headers*/
	if(/*there's json in there*/)
		return response.json().then(data=>{
			/*some manipulation*/
			let config_data = data;
			//finally !
		});
	else
		/*handle error*/
})

Once loaded, the data can be used like this:

let config_data;
fetchJSON("../../someFolder/someFile.json", data=>config_data=data)
.then(()=>{
	/* use config_data to configure your application*/
});

Questions/Suggestions

Please fill free to ask for help / post suggestions on my github repository, I'll be more than glad to take care of your problems/concerns.

Keywords

FAQs

Package last updated on 21 Jul 2017

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