DEV Community

Cover image for Schedule postman collection run in Node.
Manoj Kumar Kengudelu
Manoj Kumar Kengudelu

Posted on

Schedule postman collection run in Node.

Postman helps us to write and automate API tests. We can create collections which are group of API requests. Newman is a command-line Collection Runner for Postman. It enables you to run and test a Postman Collection directly from the command line

Postman provides Monitoring service which is a way to stay up to date on the health and performance of your APIs. Postman monitors are based on collections. Monitors will run through each request in your collection, similar to the collection runner. The free plan of Postman monitor has limitation on API execution per month.

What if you would like to run your postman collections multiple times a day which is more than the limit Postman monitoring service provides? You can switch to Node.js library node-cron

Read More about it here..

Top comments (0)