1.0.0 • Published 6 years ago
multihandedapi v1.0.0
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 .