1.0.3 • Published 3 years ago

dostman v1.0.3

Weekly downloads
-
License
MIT
Repository
-
Last release
3 years ago

Publish to NPM

dostman

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!

Why dostman instead of Postman?

  • 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!

Installation

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

How to use

  1. 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.

  1. 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.

Configure your dostman file with @config

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};

###
1.0.3

3 years ago

1.0.2

3 years ago

1.0.1

3 years ago

1.0.0

3 years ago

0.0.31

3 years ago

0.0.3

3 years ago

0.0.1

3 years ago