Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/cvan/ipfs-pub
A service for publishing files to IPFS.
https://github.com/cvan/ipfs-pub
Last synced: about 2 months ago
JSON representation
A service for publishing files to IPFS.
- Host: GitHub
- URL: https://github.com/cvan/ipfs-pub
- Owner: cvan
- License: other
- Created: 2017-04-10T12:45:12.000Z (almost 8 years ago)
- Default Branch: master
- Last Pushed: 2017-04-10T13:23:45.000Z (almost 8 years ago)
- Last Synced: 2024-12-17T22:13:01.624Z (about 2 months ago)
- Language: JavaScript
- Size: 8.79 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 8
-
Metadata Files:
- Readme: README.md
- License: LICENSE.md
Awesome Lists containing this project
README
# IPFS Pub
A service for publishing files to [IPFS](https://ipfs.io/).
## Install
Install the [IPFS](https://ipfs.io/docs/install/) command-line daemon:
```sh
# Grab the latest version from here: https://dist.ipfs.io/#go-ipfs
curl -O https://dist.ipfs.io/go-ipfs/v0.4.8/go-ipfs_v0.4.8_linux-amd64.tar.gz# Unpack the tarball.
tar xvfz go-ipfs.tar.gz# Open the extracted directory.
cd go-ipfs# Run the install script (which simply moves the `ipfs` binary to the `/usr/local/bin` directory).
./install.sh```
Install the [Node](https://nodejs.org/download/) dependencies:
```sh
npm install
```## Usage
From one tab in the command line, start the IPFS daemon:
```sh
ipfs daemon
```From another tab in the command line, start the local Node development server:
```sh
npm start
```## License
[CC0 1.0 Universal (CC0 1.0) — Public Domain Dedication](LICENSE.md)