Skip to content

besoeasy/get-ipfs-gateway

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

2 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

ipfs-gateway

Get working IPFS Gateway

Install

npm i get-ipfs-gateway

Usage

const { getGateway } = require('get-ipfs-gateway');

async function test() {
	const gateways = await getGateway();
	console.log(gateways);
}

test();