Skip to content

christophe-pietquin/postman-sandbox

 
 

Repository files navigation

Postman Sandbox

This repository has not yet been updated with code and tests for production use.

If you are looking to execute collections, you should bee using Newman

Usage

var Sandbox = require('postman-sandbox'),
    context;

Sandbox.createContext(function (err, ctx) {
    if (err) {
        return console.error(err);
    }

    ctx.execute(`// code here`, {}, {}, function (err) {
        if (err) {
            return console.error(err);
        }
        console.log('executed')
    });
});

About

Sandbox for Postman Scripts to run in NodeJS or Chrome

Resources

License

Stars

Watchers

Forks

Packages

 
 
 

Contributors

Languages

  • JavaScript 100.0%