Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/farhadrezvani/warframe-drops-pwa
a warframe app that finds the best place to farm any in-game item by looking through the official drop tables published by Digital Extremes.
https://github.com/farhadrezvani/warframe-drops-pwa
data drop-data game preact pwa vite warframe
Last synced: about 2 months ago
JSON representation
a warframe app that finds the best place to farm any in-game item by looking through the official drop tables published by Digital Extremes.
- Host: GitHub
- URL: https://github.com/farhadrezvani/warframe-drops-pwa
- Owner: farhadrezvani
- License: mit
- Created: 2022-06-12T18:18:27.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2024-08-21T21:31:58.000Z (4 months ago)
- Last Synced: 2024-08-21T23:33:36.435Z (4 months ago)
- Topics: data, drop-data, game, preact, pwa, vite, warframe
- Language: TypeScript
- Homepage: https://warframedrops.netlify.app
- Size: 1.43 MB
- Stars: 2
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
a warframe app that finds the best place to farm any in-game item by looking through the [official drop tables](https://n8k6e2y6.ssl.hwcdn.net/repos/hnfvc0o3jnfvc873njb03enrf56.html) published by Digital Extremes in a simple UI, installable on supported browsers for offline usage.
## Generated Data
Build process generates the following JSON files by downloading and parsing the drop data webpage provided by Digital Extremes.
List of in-game items sorted by drop chance in descending order.
#### **`/public/data/drops.json`**
```yaml
[
{
"name": "Smoking Body Ephemera Blueprint",
"place": "Shadow Stalker",
"rarity": "Very Common",
"chance": "5.00",
},
{ ... },
]
```The metadata of the current build.
#### **`/public/data/info.json`**
```yaml
{
"hash": "6cda902094785fa79df1ec64647e746d",
"build": "2022/06/12",
"update": "2022/06/09",
}
```## Scripts
here is the list of some built-in npm scripts :
```yaml
{
"scripts": {
"dev": "vite", // start dev server
"build": "vite build", // build for production
"preview": "vite preview", // preview production build
"prebuild": "ts-node-esm generateData.ts" // generate drop data
}
}
```## License
MIT