https://github.com/ricoledan/deno-spacex-launch-data
🚀 A simple deno program that downloads SpaceX launch data and displays that data to the console
https://github.com/ricoledan/deno-spacex-launch-data
Last synced: 5 days ago
JSON representation
🚀 A simple deno program that downloads SpaceX launch data and displays that data to the console
- Host: GitHub
- URL: https://github.com/ricoledan/deno-spacex-launch-data
- Owner: Ricoledan
- License: mit
- Created: 2020-10-20T04:59:17.000Z (over 5 years ago)
- Default Branch: main
- Last Pushed: 2020-10-22T00:26:31.000Z (over 5 years ago)
- Last Synced: 2025-02-27T19:58:17.391Z (over 1 year ago)
- Language: TypeScript
- Size: 3.91 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# SpaceX Launch Data
🚀 A simple deno program that downloads SpaceX launch data and displays that data to the console
## Documentation
[SpaceX REST API](https://github.com/r-spacex/SpaceX-API) - Open Source REST API for rocket, core, capsule, pad, and launch data
[V4 Docs](https://github.com/r-spacex/SpaceX-API/blob/master/docs/v4/README.md)
```
https://api.spacexdata.com/v4/launches
```
## Run application
```
deno run --allow-net=api.spacexdata.com mod.ts
```
## Console Info
```
INFO Downloading launch data...
INFO {"flightNumber":1,"mission":"FalconSat","rocket":"Falcon 1","customers":["DARPA"]}
INFO {"flightNumber":2,"mission":"DemoSat","rocket":"Falcon 1","customers":["DARPA"]}
INFO {"flightNumber":3,"mission":"Trailblazer","rocket":"Falcon 1","customers":["NASA"]}
...
INFO Downloaded data for 113 SpaceX launches.
```