1.1.1 • Published 3 years ago

fm-radios v1.1.1

Weekly downloads
-
License
ISC
Repository
github
Last release
3 years ago

API To Listen FM Radios Online

Description

  • You can use by state or by all;
  • By state: north, northeast, southeast, south and midlewest;
  • All: Radios;
  • Use with a forEach or map;
  • Radios from Brazil;

How to use?

npm install fm-radios
const radios = require("fm-radios"); //ES5 (all radios)
import Radios from "fm-radios"; //ES6 (all radios)

Radios.north.map(radios => {
    console.log(radios.name);
});

const north = require("fm-radios"); //ES5 (by state)
import { north } from "fm-radios"; //ES6 (by state)

north.map(radios => {
    console.log(radios.name);
});