JSPM

restcountries-js

0.0.1
  • ESM via JSPM
  • ES Module Entrypoint
  • Export Map
  • Keywords
  • License
  • Repository URL
  • TypeScript Types
  • README
  • Created
  • Published
  • Downloads 3
  • Score
    100M100P100Q34523F
  • License ISC

restcountries api wrapper for javascript

Package Exports

  • restcountries-js

This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (restcountries-js) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.

Readme

Restcountries-js

This is a Javascript wrapper around API provided by Restcountries.

Installation

npm i restcoutries-js

Example in Node.js

    const restcountries = require('restcoutries-js')
    restcountries().all()
        .then(data => {
            console.log(data)
        })

Async/Await

    const restcountries = require('restcoutries-js')
    (async () => {
        const allCountries = await restcountries().all()
        console.lg(allCountries)
    })()

Webpack 4.0

    import restcountries from 'restcoutries-js'
    restcoutries().all().then(data => {
        console.log(data)
    })

Webrowser

    <script src="/node_modules/restcountries-js/dist/restcountries.min.js"></script>
    <script>
        restcoutries().all().then(data => {
            console.log(data)
        })
    </script>

restcountries-js API

You can use your own API server, but it will work only with clone of this. This wrapper uses https://restcountries.eu endpoint as default.

restcountries(baseUrl)

    restcountries('http://my.path.to/api').all()
        .then(data => {
            console.log(data)
        })

restcountries method aliases

restcountries.all([extra])

restcountries.name(name[, fullText[, extra]])

restcountries.code(code[, extra])

restcountries.codes(codes[, extra])

restcountries.currency(currency[, extra])

restcountries.capital(capital[, extra])

restcountries.callingCode(callingCode[, extra])

restcountries.region(region[, extra])

restcountries.regionalBloc(regionalBloc[, extra])

These methods full description availble here: https://github.com/apilayer/restcountries

Contact

Telegram or by email