Created
July 21, 2020 20:09
-
-
Save someshkoli/8479481c161d92121a2f3fff768c0035 to your computer and use it in GitHub Desktop.
sdk-generator usage
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
const generate = require('.').generate; | |
// this version is valid till the first cut feature/nodejs-request-sdkgen | |
generate({ | |
type: 'json', | |
collection: //collection json here | |
}, { | |
language: 'Nodejss', | |
variant: 'request', | |
}, (err, snippet) => { | |
console.log(err); | |
console.log(snippet); | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment