https://github.com/rameshvarun/comparecloud
A simple tool to compare cloud storage options by price. Created using React and TypeScript.
https://github.com/rameshvarun/comparecloud
react typescript webpack
Last synced: 3 months ago
JSON representation
A simple tool to compare cloud storage options by price. Created using React and TypeScript.
- Host: GitHub
- URL: https://github.com/rameshvarun/comparecloud
- Owner: rameshvarun
- Created: 2018-09-02T16:02:50.000Z (almost 8 years ago)
- Default Branch: master
- Last Pushed: 2023-04-22T16:37:09.000Z (about 3 years ago)
- Last Synced: 2025-07-16T01:26:13.126Z (12 months ago)
- Topics: react, typescript, webpack
- Language: TypeScript
- Homepage: https://rameshvarun.github.io/comparecloud/
- Size: 562 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 3
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# comparecloud
[](https://github.com/rameshvarun/comparecloud/actions/workflows/node.js.yml)

## Contributing
First, get a copy of the repo and dependencies.
```bash
git clone git@github.com:rameshvarun/comparecloud.git
cd comparecloud
npm install
# Start a live-reloading server.
npm start
```
You can now start editing the providers in `src/providers/*.ts`. Providers conform to the interface in `src/provider.ts`.
```typescript
export default interface Provider {
readonly name: string;
...
readonly features: {
...
};
getMonthlyPrice?: (storage: number) => number | undefined;
getYearlyPrice?: (storage: number) => number | undefined;
}
```