Maintain your API development, documentation and experimentation all within your codebase.
- This project is a new release! Feel free to contact me @egecavusoglu to collaborate or see Project Plan for to do items. Pull requests welcome!
- Remove the need of an external app.
- Don't deal with Postman's business logic or plan restrictions.
- Get formatted output of your API requests in JSON, use & distribute it anywhere you like.
- Track your API documentation with your project's version management. No more outdated API docs!
You can install dostman as a dev dependency to your project like this.
npm i -D dostman
Or globally like this
npm i -g dostman
- Create files with .dostman extension file in following format. Find a more detailed how to use guide at sample usage.
- @desc: Description of your endpoint
- @method: HTTP method of the request (GET | POST | PUT | DELETE)
- @headers: Specify headers, seperated by commas
,
. - @body: Specify request body as JSON.
To see example .dostman files visit sample-requests.
- Run dostman at the root of your directory.
- If installed globally
dostman
- If installed as a dev dependency: Add a script to your package.json
"scripts": {
"dostman": "dostman"
},
Dostman will find all files under the directory ending with .dostman
extension, execute your requests and give you API docs.
Are you also tired of refreshing tokens for requests whenever you open your project after a while? Or want randomized variables? You can save your variables as functions to automate the process.
Dostman will evaluate your config as JavaScript and replace your variables with your exported values.
@config
const SERVER_URL = `https://jsonplaceholder.typicode.com/todos/1`;
const variable_as_func = () => 555;
exports = {SERVER_URL, variable_as_func};
###