The create part of Extension.js. Available as a standalone package.
This package stores all logic needed by Extension.js to create new projects.
pnpm add extension-create
import {extensionCreate} from 'extension-create'
async function createNewExtension () {
await extensionCreate(
projectName: /* string (required) */,
{
/* string - Template name or URL. Defaults to 'init' */
template
}
)
}
createNewExtension()
MIT (c) Cezar Augusto.