https://github.com/subhasisbanik/web3-storage
This project will be used as a POC for web3 storage as depicted in https://web3.storage/
https://github.com/subhasisbanik/web3-storage
filecoin ipfs web3 web3-storage
Last synced: about 2 months ago
JSON representation
This project will be used as a POC for web3 storage as depicted in https://web3.storage/
- Host: GitHub
- URL: https://github.com/subhasisbanik/web3-storage
- Owner: subhasisbanik
- License: mit
- Created: 2022-08-23T21:05:45.000Z (almost 4 years ago)
- Default Branch: main
- Last Pushed: 2022-11-30T22:23:55.000Z (over 3 years ago)
- Last Synced: 2025-03-24T18:28:05.624Z (about 1 year ago)
- Topics: filecoin, ipfs, web3, web3-storage
- Language: TypeScript
- Homepage:
- Size: 14.6 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
This application is built as a seamless layer on top of web3-storage
## Description
This project utilizes the Javascript methods prepared by the web3-storage(https://web3.storage/docs/) team and prepares a REST layer on top of it. This would not only provide the capability of the layer to be interactive with any RESTful framework like Java/Python, but also allow middlewares to integrate with the same for seamless access to storage provided by web3-storage.
## Installation
```bash
$ npm install
```
## Running the app
```bash
# development
$ npm run start
# watch mode
$ npm run start:dev
```
## Test
```bash
# unit tests
$ npm run test
# e2e tests
$ npm run test:e2e
# test coverage
$ npm run test:cov
```