Skip to content

YakutD/multihandedapi

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

4 Commits
 
 
 
 
 
 
 
 

Repository files navigation

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 .

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published