All Projects → maxlath → ipfs-add-from-url

maxlath / ipfs-add-from-url

Licence: other
A command line executable to add a file to IPFS from a URL instead of a file path

Programming Languages

javascript
184084 projects - #8 most used programming language

Labels

Projects that are alternatives of or similar to ipfs-add-from-url

AccountPhoto
Map a universal avatar against your EOS blockchain account (stored using the IPFS protocol).
Stars: ✭ 13 (-45.83%)
Mutual labels:  ipfs
git-lfs-ipfs
Use IPFS as a git-lfs endpoint
Stars: ✭ 41 (+70.83%)
Mutual labels:  ipfs
ipfs-eth-database
An example of usage IPFS in Ethereum Smart Contracts
Stars: ✭ 55 (+129.17%)
Mutual labels:  ipfs
ipfs-crawler
A crawler for the IPFS network, code for our paper (https://arxiv.org/abs/2002.07747). Also holds scripts to evaluate the obtained data and make similar plots as in the paper.
Stars: ✭ 46 (+91.67%)
Mutual labels:  ipfs
nft-art-maker
NFT Art Maker - generates images and metadata files, packs them into IPFS CAR files, and uploads them using nft.storage. All from provided PNG layers.
Stars: ✭ 77 (+220.83%)
Mutual labels:  ipfs
ethereum-dapp-ipfs-node.js-mongodb
以太坊开发DApp实战教程——用区块链、星际文件系统(IPFS)、Node.js和MongoDB来构建电商平台
Stars: ✭ 46 (+91.67%)
Mutual labels:  ipfs
inkdrop-app
InkDrop
Stars: ✭ 18 (-25%)
Mutual labels:  ipfs
pollinations
Generate Art
Stars: ✭ 100 (+316.67%)
Mutual labels:  ipfs
IPFSStreamingVideo
IPFS Streaming Video
Stars: ✭ 28 (+16.67%)
Mutual labels:  ipfs
nftool
A suite of tools for NFT generative art.
Stars: ✭ 145 (+504.17%)
Mutual labels:  ipfs
tiddlywiki-ipfs
IPFS with TiddlyWiki
Stars: ✭ 50 (+108.33%)
Mutual labels:  ipfs
orb
A DID method implementation that extends the Sidetree protocol into a Fediverse of interconnected nodes and witnessed using certificate transparency. Spec: https://trustbloc.github.io/did-method-orb/
Stars: ✭ 25 (+4.17%)
Mutual labels:  ipfs
demo-ipfs-todo
Simple ToDo app using window.ipfs
Stars: ✭ 16 (-33.33%)
Mutual labels:  ipfs
apebase
Bored Ape Database
Stars: ✭ 110 (+358.33%)
Mutual labels:  ipfs
react-native-sdk
[DEPRECATED] React Native bindings for https://github.com/textileio/go-textile
Stars: ✭ 38 (+58.33%)
Mutual labels:  ipfs
aletheia-app
Alethia peer to peer publishing platform
Stars: ✭ 46 (+91.67%)
Mutual labels:  ipfs
martianpins
Self hosted IPFS pinning service.
Stars: ✭ 23 (-4.17%)
Mutual labels:  ipfs
superhighway84
USENET-inspired, uncensorable, decentralized internet discussion system running on IPFS & OrbitDB
Stars: ✭ 437 (+1720.83%)
Mutual labels:  ipfs
php-ipfs-api
php client library for ipfs
Stars: ✭ 46 (+91.67%)
Mutual labels:  ipfs
almonit-plugin
ENS+IPFS Firefox plugin by Almonit
Stars: ✭ 17 (-29.17%)
Mutual labels:  ipfs

ipfs-add-from-url

A command line executable to add a file to IPFS from a URL instead of a file path

Dependency

Make sure IPFS is installed and the daemon running

ipfs daemon

Install

Globally

npm install -g ipfs-add-from-url
# Use anywhere
ipfs-add-from-url https://inventaire.io/public/icon/120.png

In a project

npm install ipfs-add-from-url --save
# Use directly from npm scripts
ipfs-add-from-url https://inventaire.io/public/icon/120.png
# Or using the relative path from the command line
./node_modules/.bin/ipfs-add-from-url https://inventaire.io/public/icon/120.png

Alternative

As suggested by ftnd33, you can do pretty much the same with

wget -q -O - http://url.tld | ipfs add -q
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].