Important: This documentation covers Yarn 1 (Classic).
For Yarn 2+ docs and migration guide, see yarnpkg.com.

Package detail

@devmehq/sdk-js

devmehq126MIT1.1.4TypeScript support: included

DEV.ME SDK for JavaScript & TypeScript for Server & Browser, Compatible with Node.js & React & Vue.js & Angular

Email SMTP Verification, Email Verification, Currency Converstion Rates, Currency Exchange, Currency Converter, IP Geolocation, IP2Location, IP Info, IP Data, Phone Number Validation, OCR, Image to Text, Image to Text OCR, Text extractor, URL Shortener, Onetime Secret, Verification, Validation

readme

DEV.ME SDK for JavaScript & TypeScript

Build Status NPM version Downloads

DEV.ME SDK for JavaScript & TypeScript

Works with Node.js and in The Browser, Compatible with Node.js & React.js & Vue.js & Angular.js

Get Your Free API Key

Signup Here and Get Your Free API Key

Installation and usage instructions

Installation

Install the module through YARN:

yarn add @devmehq/sdk-js

Or NPM

npm insgall @devmehq/sdk-js

Examples

Currency API Conversion

import { CurrencyApi, Configuration } from '@devmehq/sdk-js';
const config = new Configuration({ apiKey: 'demo-key' });
const currencyApi = new CurrencyApi(config);

const { data } = await currencyApi.v1ConvertCurrency({
  amount: 10,
  from: 'USD',
  to: 'EUR',
});
// {
//   convertedAmount: 8.819,
//   convertedText: '10 USD equal to 8.819 EUR',
//   exchangeRate: 0.8819,
//   from: 'USD',
//   originalAmount: 10,
//   rateTime: '2022-01-20T14:49:28.046Z',
//   to: 'EUR'
// }

IP API Geolocation, IP2Location, IP Data

import { IPApi, Configuration } from '@devmehq/sdk-js';
const config = new Configuration({ apiKey: 'demo-key' });
const ipApi = new IPApi(config);

const { data } = await ipApi.v1GetIpDetails({ ip: '52.45.23.11' });

// {
//   asn: 14618,
//   aso: 'AMAZON-AES',
//   city: {
//   accuracyRadius: 1000,
//     latitude: 39.0469,
//     longitude: -77.4903,
//     metroCode: 511,
//     name: 'Ashburn',
//     timeZone: 'America/New_York',
//   },
//   countryCode: 'US',
//   ip: '52.45.23.11',
//   registeredCountryCode: 'US',
// }

Testing

yarn test

Need Help?

If you need help please drop us a message, we would be glad to help @ Contact us

Contributing

Please feel free to open an issue or create a pull request and fix bugs or add features, All contributions are welcome. Thank you!

LICENSE MIT

changelog

Change Log

v1.1.2

  • Remove node-fetch dependency
  • Add axios client for request
  • Enhance typing

v1.1.0

  • Initial stable release
  • Adding tests
  • Adding documentation
  • Adding examples
  • Adding examples to README.md