🚧 package are being published to npm
serivce-tempalteis a cli that helps boostrap new project or deploy template.
demo-scafoldding.mp4
npm pkg fix
npm login
npm publish- ship with sdk and cli usage
- clone repo support
- copy template folder support
- run custom command support
- Supports config file
service.config.ts:
# npm
npm install --save-dev service-template
# pnpm
pnpm add --save-dev service-templateWith any package manager you perfer
# run the executable
# pnpm
pnpx service-template
# npm
npx serivce-templateor just add it your script
"scripts": {
"create-service": "service-template"
}# run the script
pnpm create-serviceuse config file to specify option
// service.config.ts
import { defineConfig } from 'service-template'
export default defineConfig({
// ...options
})