Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/postmanlabs/newman-dashboard
A WebUI companion for Newman to control, view and debug runs. 🚀✨
https://github.com/postmanlabs/newman-dashboard
Last synced: about 1 month ago
JSON representation
A WebUI companion for Newman to control, view and debug runs. 🚀✨
- Host: GitHub
- URL: https://github.com/postmanlabs/newman-dashboard
- Owner: postmanlabs
- Created: 2021-06-01T07:52:37.000Z (over 3 years ago)
- Default Branch: develop
- Last Pushed: 2022-02-15T08:50:03.000Z (over 2 years ago)
- Last Synced: 2024-09-29T18:21:28.175Z (about 1 month ago)
- Language: JavaScript
- Homepage:
- Size: 2.35 MB
- Stars: 18
- Watchers: 4
- Forks: 19
- Open Issues: 24
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
## About
Newman Dashboard aims to provide a real-time WebUI dashboard which can let you control and view the currently executing as well as the previously executed [newman](https://github.com/postmanlabs/newman) runs. This would help you debug and analyze your runs from a single endpoint and notify about any error which might occur during the run.
This project was built during [Google Summer of Code 2021](https://summerofcode.withgoogle.com/projects/#5547391014404096) ☀️ with [Postman](https://github.com/postmanlabs) 🚀
## Environment setup
A. Install all dependencies
```
npm install
```B. Run the CLI for launching the dashboard
```
node ./bin/index
```C. Running the tests
```
// The complete test suite along with linting
npm test// Only linting
npm run test:lint// Only the test suite
npm run test:suite
```