Research
Security News
Malicious npm Packages Inject SSH Backdoors via Typosquatted Libraries
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
airport-cluj
Advanced tools
Live information about the departures and arrivals at the International Airpot Avram Iancu Cluj.
$ airport-cluj
Live information about the departures and arrivals at the International Airpot Avram Iancu Cluj.
You can install the package globally and use it as command line tool:
# Using npm
npm install --global airport-cluj
# Using yarn
yarn global add airport-cluj
Then, run airport-cluj --help
and see what the CLI tool can do.
$ airport-cluj --help
Usage: airport-cluj [options]
Live information about the departures and arrivals at the International Airpot
Avram Iancu Cluj.
Options:
-t, --type <type> The type of the flight: arrivals | departures
-h, --help Displays this help.
-v, --version Displays version information.
Examples:
$ airport-cluj --type arrivals
$ airport-cluj --type departures
Documentation can be found at https://github.com/IonicaBizau/airport-cluj#readme.
Here is an example how to use this package as library. To install it locally, as library, you can use npm install airport-cluj
(or yarn add airport-cluj
):
const airportCluj = require("airport-cluj");
(async () => {
const arrivals = await airportCluj.arrivals();
console.log(arrivals);
// [
// ...
// {
// flight: 'W43412',
// origin: 'Valencia',
// time: '02:35',
// status: 'LANDED 02:22'
// },
// {
// flight: 'W43316',
// origin: 'Birmingham',
// time: '03:00',
// status: 'LANDED 02:35'
// },
// {
// flight: 'RO641',
// origin: 'Bucharest',
// time: '06:15',
// status: 'LANDED 05:49'
// },
// ...
// { flight: 'W43384', origin: 'Bergamo', time: '01:15', status: '' }
// ]
const departures = await airportCluj.departures();
console.log(departures);
// [
// ...
// {
// flight: 'FR844',
// destination: 'Bergamo',
// time: '10:00',
// status: 'AIRBORNE 10:04',
// gate: 'B6'
// },
// {
// flight: 'FR9546',
// destination: 'Charleroi',
// time: '10:40',
// status: 'BOARDING',
// gate: 'B5'
// },
// ...
// {
// flight: 'TK1348',
// destination: 'Istanbul',
// time: '21:45',
// status: '',
// gate: 'B1'
// }
// ]
})();
There are few ways to get help:
For full API reference, see the DOCUMENTATION.md file.
Have an idea? Found a bug? See how to contribute.
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:
—I love books! I will remember you after years if you buy me one. :grin: :book:
—You can make one-time donations via PayPal. I'll probably buy a coffee tea. :tea:
—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:
FAQs
Live information about the departures and arrivals at the International Airpot Avram Iancu Cluj.
The npm package airport-cluj receives a total of 1 weekly downloads. As such, airport-cluj popularity was classified as not popular.
We found that airport-cluj demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Research
Security News
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
Security News
MITRE's 2024 CWE Top 25 highlights critical software vulnerabilities like XSS, SQL Injection, and CSRF, reflecting shifts due to a refined ranking methodology.
Security News
In this segment of the Risky Business podcast, Feross Aboukhadijeh and Patrick Gray discuss the challenges of tracking malware discovered in open source softare.