1.0.0 • Published 4 years ago

multihandedapi v1.0.0

Weekly downloads
2
License
ISC
Repository
github
Last release
4 years ago

Multihanded API

For install a package use command npm i multihandedapi

Example with use express and express-graphql :

const express = require('express');
const graphqlHTTP = require('express-graphql');
const schema = require('multihandedapi');

let port = 3000;
const app = express();

app.use('/graphql', graphqlHTTP({
  schema: schema,
  graphiql: false
}));

app.listen(port);

Package supports next API: Weather, Currency, Countries, IP, Music . You can get more detailed documentation by connecting to the GraphQL server, with the multihandedapi schema .