0.2.7 • Published 3 years ago

@compgen/nest-min v0.2.7

Weekly downloads
263
License
MIT
Repository
-
Last release
3 years ago

@compgen/nest-min

A micro generator for generating nestjs configuration.

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/nest-min

Programmatically

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

// src/index.ts
import { execute, getProjectFolder, askYesNo } from '@compgen/core'
import { createSchema } from '@compgen/nest-min'

export const askIsDatabase = () => askYesNo('Do you want to use database?')

const generate = async () => {
  const projectFolder = getProjectFolder() ?? '.'
  const isDatabase = await askIsDatabase()

  const schema = createSchema({
    projectFolder,
    isDatabase,
  })
  await execute(schema, projectFolder)
}

generate()

Now all you have to do is run:

ts-node src/index.ts
0.2.7

3 years ago

0.2.6

3 years ago

0.2.5

3 years ago

0.2.3

3 years ago

0.2.4

3 years ago

0.2.2

3 years ago

0.2.1

3 years ago

0.2.0

3 years ago

0.1.4

3 years ago

0.1.6

3 years ago

0.1.5

3 years ago

0.1.3

3 years ago

0.1.2

3 years ago

0.1.1

3 years ago

0.1.0

3 years ago

1.0.0

4 years ago