Security News
Fluent Assertions Faces Backlash After Abandoning Open Source Licensing
Fluent Assertions is facing backlash after dropping the Apache license for a commercial model, leaving users blindsided and questioning contributor rights.
airport-codes
Advanced tools
Airport codes (IATA) and information pulled from OpenFlights.org
npm install airport-codes
The list of airport codes is wrapped in a Backbone Collection, so have access to all normal collection methods like findWhere
, at
, and sort
.
var airports = require('airport-codes');
console.log(airports.findWhere({ iata: 'LAX' }).get('name'));
//=> Los Angeles Intl
console.log(airports.at(124).get('city'));;
//=> Sydney
console.log(airports.at(0).get('name'));
//=> Goroka
airports.comparator = 'city';
airports.sort();
console.log(airports.at(0).get('name'));
//=> 7 Novembre
If you'd like only the JSON list of airport codes, you can use either the Backbone Collection's toJSON
method or import the json list directly:
require('airport-codes').toJSON();
require('airport-codes/airports.json');
$ wget https://raw.githubusercontent.com/jpatokal/openflights/master/data/airports.dat
Convert the list of airport codes from csv format to JSON.
node convert.js
FAQs
Airport codes (IATA) and information pulled from OpenFlights.org.
The npm package airport-codes receives a total of 337 weekly downloads. As such, airport-codes popularity was classified as not popular.
We found that airport-codes demonstrated a not healthy version release cadence and project activity because the last version was released 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.
Security News
Fluent Assertions is facing backlash after dropping the Apache license for a commercial model, leaving users blindsided and questioning contributor rights.
Research
Security News
Socket researchers uncover the risks of a malicious Python package targeting Discord developers.
Security News
The UK is proposing a bold ban on ransomware payments by public entities to disrupt cybercrime, protect critical services, and lead global cybersecurity efforts.