JSON list of astronomical constellations 🌟
The data is simply a JSON file, feel free to use in anywhere.
npm install --save constellations
The data is a list of objects containing naming information about the constellations, arranged in alphabetical order.
const constellations = require('constellations');
constellations.length
//=> 88
constellations[0]
//=> {
// abbr: 'And',
// name: 'Andromeda',
// genitive: 'Andromedae',
// en: 'Andromeda (mythological character)'
// }
The data is scraped from this Wikipedia table.
This is by Robert Pirtle. Its license is MIT.