2024-02-24 18:42:34 -06:00
2023-12-25 21:16:39 +01:00
2024-01-11 11:29:41 -06:00
2023-12-23 16:08:25 -06:00
2023-12-23 16:08:25 -06:00
2023-12-23 16:08:25 -06:00
2023-12-23 16:07:19 -06:00
2024-01-09 11:40:48 -06:00
2024-02-24 18:39:43 -06:00
2024-02-24 18:42:34 -06:00
2024-01-09 12:16:08 -06:00
2023-12-23 16:11:16 -06:00
2024-01-09 11:40:48 -06:00

@sern/create-bot

Scaffolding sern projects

With NPM:

$ npm create @sern/bot

With Yarn:

$ yarn create @sern/bot

With PNPM:

$ pnpm create @sern/bot

Then follow the prompts!

You can also directly specify the project name and the template you want to use via additional command line options. For example, to scaffold a Typescript project, run:

# npm 6.x
npm create @sern/bot --template=ts-esm --name="mybot"

# npm 7+, extra double-dash is needed:
npm create @sern/bot -- --template=ts-esm --name="mybot"

# !!!!POWERSHELL SYNTAX
npm create @sern/bot '--' --template=ts-esm --name="mybot" --cli

# yarn
yarn create @sern/bot --template=ts-esm --name="mybot"

# pnpm
pnpm create @sern/bot --template=ts-esm --name="mybot"

Currently supported template presets include:

  • ts
  • ts-esm
  • js
  • js-esm
  • js+cli
  • ts+cli
Description
No description provided
Readme 16 MiB
Languages
TypeScript 85.4%
JavaScript 14.6%