A helper utility to create plunkers
Example usage
import { Plunker } from 'create-plunker';
Plunker.create()
.setDescription('Description')
.addNpmPackage('moment')
.addFile({name: 'foo.js', contents: 'alert("foo included");'})
.setIndexBody('Hello world!')
.save();
For a full list of API docs see here and for more example usage see the tests.