UNPKG
postman-cli
Version:
canary (1.20.0-canary.6)
latest (1.23.0)
1.23.0
1.22.0
1.21.0
1.20.0
1.20.0-preview.1
1.20.0-canary.6
1.19.4
1.16.0-canary.1
0.0.0-alpha.0
Official Postman CLI - Command-line companion for API development, testing, and automation
postman-cli
/
bin
/
postman.js
11 lines
(8 loc)
•
137 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
#!/usr/bin/env node
const
run =
require
(
'../index'
);
try
{
run
(...process.
argv
.
slice
(
2
)); }
catch
(error) { process.
exit
(
1
); }