Important: This documentation covers Yarn 1 (Classic).
For Yarn 2+ docs and migration guide, see yarnpkg.com.

Package detail

@compgen/angular-min

michal.jarnot2MIT0.3.7TypeScript support: included

Unless you are building custom Angular generator then you probably want to use: @compgen/angular

readme

@compgen/angular-min

Unless you are building custom Angular generator then you probably want to use: @compgen/angular

This is a micro generator for minimal Angular application.

CLI

I highly recommend using npx so that you don't have to install anything globally, and you can always get the latest version from npm.

  • optional --path=target_folder
npx @compgen/angular-min

Programmatically

You have to generate JSON schema and use execute function from @compgen/core:

// src/index.ts
import { execute, askProjectName } from '@compgen/core'
import { createSchema } from '@compgen/angular-min'

const generate = async () => {
  const { projectFolder } = await askProjectName()

  const schema = createSchema({ projectFolder })

  await execute(schema, projectFolder)
}

generate()

Now all you have to do is run:

ts-node src/index.ts