https://github.com/ionicabizau/flight-tracker

:airplane: A flight tracker in your command line.

https://github.com/ionicabizau/flight-tracker

Science Score: 26.0%

This score indicates how likely this project is to be science-related based on various indicators:

  • CITATION.cff file
  • codemeta.json file
    Found codemeta.json file
  • .zenodo.json file
    Found .zenodo.json file
  • DOI references
  • Academic publication links
  • Committers with academic emails
  • Institutional organization owner
  • JOSS paper metadata
  • Scientific vocabulary similarity
    Low similarity (11.7%) to scientific vocabulary

Keywords

hacktoberfest
Last synced: 11 months ago · JSON representation

Repository

:airplane: A flight tracker in your command line.

Basic Info
  • Host: GitHub
  • Owner: IonicaBizau
  • License: mit
  • Language: JavaScript
  • Default Branch: master
  • Size: 20.5 KB
Statistics
  • Stars: 26
  • Watchers: 3
  • Forks: 2
  • Open Issues: 0
  • Releases: 12
Topics
hacktoberfest
Created about 10 years ago · Last pushed over 1 year ago
Metadata Files
Readme Contributing Funding License

README.md

$ flight-tracker

Support me on Patreon Buy me a book PayPal Ask me anything Version Downloads Get help on Codementor

Buy Me A Coffee

A flight tracker in your command line.

Coded in the airport and on the plane. :airplane:

flight-tracker

:cloud: Installation

You can install the package globally and use it as command line tool:

```sh

Using npm

npm install --global flight-tracker

Using yarn

yarn global add flight-tracker ```

Then, run flight-tracker --help and see what the CLI tool can do.

``` $ flight-tracker --help Usage: flight-tracker [options]

A flight tracker in your command line.

Command arguments: The start date. The end date. The start location. The end location.

Options: -d, --decimals How many decimals to display. -i, --interval The interval value in milliseconds. -h, --help Displays this help. -v, --version Displays version information.

Examples: $ flight-tracker '2016-05-26 18:05' '2016-05-26 21:15' 'Cluj-Napoca' 'Luton, London' -i 50 -d 20

Documentation can be found at https://github.com/IonicaBizau/flight-tracker#readme. ```

:clipboard: Example

Here is an example how to use this package as library. To install it locally, as library, you can use npm install flight-tracker (or yarn add flight-tracker):

```js const flightTracker = require("flight-tracker");

// Actually, yeah, that was a real flight :D flightTracker({ // Where and when are you flying from? start: ["Cluj-Napoca", new Date(2016, 4, 26, 18, 5)]

// Where and when are you flying to?

, end: ["Luton, London", new Date(2016, 4, 26, 21, 15)]

///// The following are the defaults. You don't
///// have to provide them as long you are happy with them.

// How often do you want to update the output?

, interval: 50

// Width of the stream

, width: process.stdout.columns || 60

// By default, show two decimals

, decimals: 20

// By default, use the standard out stream of the current process

, stream: process.stdout }).on("error", err => { console.error(err); process.exit(1); }); ```

:question: Get Help

There are few ways to get help:

  1. Please post questions on Stack Overflow. You can open issues with questions, as long you add a link to your Stack Overflow question.
  2. For bug reports and feature requests, open issues. :bug:
  3. For direct and quick help, you can use Codementor. :rocket:

:memo: Documentation

For full API reference, see the DOCUMENTATION.md file.

:yum: How to contribute

Have an idea? Found a bug? See how to contribute.

:sparkling_heart: Support my projects

I open-source almost everything I can, and I try to reply to everyone needing help using these projects. Obviously, this takes time. You can integrate and use these projects in your applications for free! You can even change the source code and redistribute (even resell it).

However, if you get some profit from this or just want to encourage me to continue creating stuff, there are few ways you can do it:

  • Starring and sharing the projects you like :rocket:
  • Buy me a book—I love books! I will remember you after years if you buy me one. :grin: :book:
  • PayPal—You can make one-time donations via PayPal. I'll probably buy a ~~coffee~~ tea. :tea:
  • Support me on Patreon—Set up a recurring monthly donation and you will get interesting news about what I'm doing (things that I don't share with everyone).
  • Bitcoin—You can send me bitcoins at this address (or scanning the code below): 1P9BRsmazNQcuyTxEqveUsnf5CERdq35V6

Thanks! :heart:

:scroll: License

MIT © Ionică Bizău

Owner

  • Name: Ionică Bizău (Johnny B.)
  • Login: IonicaBizau
  • Kind: user
  • Location:
  • Company: @Bloggify @BibleJS @BrainJS

Programmer, Geek, Pianist & Organist, Learner, Mentor, Dreamer, Vegetarian, Jesus follower, Founder @Bloggify

GitHub Events

Total
  • Release event: 1
  • Delete event: 1
  • Push event: 1
  • Pull request event: 2
  • Create event: 2
Last Year
  • Release event: 1
  • Delete event: 1
  • Push event: 1
  • Pull request event: 2
  • Create event: 2

Committers

Last synced: about 3 years ago

All Time
  • Total Commits: 32
  • Total Committers: 1
  • Avg Commits per committer: 32.0
  • Development Distribution Score (DDS): 0.0
Past Year
  • Commits: 0
  • Committers: 0
  • Avg Commits per committer: 0.0
  • Development Distribution Score (DDS): 0.0
Top Committers
Name Email Commits
Ionică Bizău b****a@g****m 32

Issues and Pull Requests

Last synced: 11 months ago

All Time
  • Total issues: 2
  • Total pull requests: 13
  • Average time to close issues: 2 days
  • Average time to close pull requests: less than a minute
  • Total issue authors: 2
  • Total pull request authors: 1
  • Average comments per issue: 1.5
  • Average comments per pull request: 0.0
  • Merged pull requests: 13
  • Bot issues: 0
  • Bot pull requests: 0
Past Year
  • Issues: 0
  • Pull requests: 2
  • Average time to close issues: N/A
  • Average time to close pull requests: less than a minute
  • Issue authors: 0
  • Pull request authors: 1
  • Average comments per issue: 0
  • Average comments per pull request: 0.0
  • Merged pull requests: 2
  • Bot issues: 0
  • Bot pull requests: 0
Top Authors
Issue Authors
  • Md-Mahfuzur-Rahman (1)
  • juliomatcom (1)
Pull Request Authors
  • IonicaBizau (13)
Top Labels
Issue Labels
Pull Request Labels

Packages

  • Total packages: 1
  • Total downloads:
    • npm 1 last-month
  • Total dependent packages: 2
  • Total dependent repositories: 1
  • Total versions: 12
  • Total maintainers: 1
npmjs.org: flight-tracker

A flight tracker in your command line.

  • Versions: 12
  • Dependent Packages: 2
  • Dependent Repositories: 1
  • Downloads: 1 Last month
Rankings
Stargazers count: 7.5%
Dependent packages count: 8.9%
Forks count: 9.9%
Dependent repos count: 10.4%
Average: 12.6%
Downloads: 26.4%
Maintainers (1)
Last synced: 11 months ago

Dependencies

package.json npm
  • fillo ^1.0.4
  • tilda ^4.3.1