2.0.20 • Published 7 days ago

@flatjs/cli v2.0.20

Weekly downloads
-
License
MIT
Repository
-
Last release
7 days ago

@flatjs/cli

A tool the modern for rapidly building command line flatjs apps

Install globally

  • npm i -g @flatjs/cli

Module/Programmatic Usage

  • yarn add @flatjs/cli

Add this package to package dependencies linked to your app, just import them like regular packages:

import { bootstrap } from "@flatjs/cli";

bootstrap().then((cli) => {
  // Register customized plugins chain.
  cli.register(pluginA).register(pluginB);

  // Parse progress arguments.
  cli.parse(process.argv.slice(2));
});

Create a custom flatjs-based plugin chain e.g. flat test

  • flatjs-cli-plugin-test/package.json
    "type": "module",
    "exports": {
      ".": {
        "import": "./index.js"
      },
      "./package.json": "./package.json"
    },
  • flatjs-cli-plugin-test/src/index.ts
import type { CommandArgv } from "@armit/commander";
import { AbstractHandler, createCommand } from "@armit/commander";

type TestCmdArgs = CommandArgv<{
  test: number;
}>;

class CmdTestHandle extends AbstractHandler<TestCmdArgs> {
  handle(): void | Promise<void> {
    console.log("this is test command handle");
    this.logger.debug("this is debug message for test command");
  }
}

const cmdTest = createCommand(
  "test",
  {
    command: "test",
    describe: "Display flatjs project details.",
    builder: (yargs) => {
      return yargs.example(`$0 cmd test `, "cli testing").option("test", {
        type: "number",
        alias: "t",
        default: true,
        describe: `cli option test describe`,
      });
    },
  },
  CmdTestHandle
);
// As default export
export default cmdTest;

Contributing

Contributions are happily accepted. I respond to all PR's and can offer guidance on where to make changes. For contributing tips see CONTRIBUTING.md

2.1.0-next.11

7 days ago

2.1.0-next.10

10 days ago

2.1.0-next.9

11 days ago

2.1.0-next.8

18 days ago

2.1.0-next.7

20 days ago

2.1.0-next.6

23 days ago

2.1.0-next.4

25 days ago

2.1.0-next.5

25 days ago

2.1.0-next.2

27 days ago

2.1.0-next.1

27 days ago

2.1.0-next.3

27 days ago

2.1.0-next.0

1 month ago

2.0.20

1 month ago

2.0.19

1 month ago

2.0.17

1 month ago

2.0.18

1 month ago

2.0.16

2 months ago

2.0.15

2 months ago

2.0.14

2 months ago

2.0.13

2 months ago

2.0.12

2 months ago

2.0.11

2 months ago

2.0.10

2 months ago

2.0.7

2 months ago

2.0.9

2 months ago

2.0.8

2 months ago

2.0.6

3 months ago

2.0.5

3 months ago

2.0.3

3 months ago

2.0.4

3 months ago

2.0.2

5 months ago

2.0.0-next.6

6 months ago

1.8.1-next.101

10 months ago

2.0.0-next.7

6 months ago

1.8.1-next.102

10 months ago

2.0.0-next.4

7 months ago

2.0.0-next.5

6 months ago

1.8.1-next.100

10 months ago

1.8.1-next.105

10 months ago

1.8.1-next.106

9 months ago

1.8.1-next.103

10 months ago

1.8.1-next.104

10 months ago

1.8.1-next.109

9 months ago

1.8.1-next.107

9 months ago

1.8.1-next.108

9 months ago

2.0.0-next.2

7 months ago

2.0.0-next.3

7 months ago

2.0.0-next.1

7 months ago

1.8.1-next.120

9 months ago

1.8.1-next.123

9 months ago

1.8.1-next.124

9 months ago

1.8.1-next.121

9 months ago

1.8.1-next.122

9 months ago

1.8.1-next.127

8 months ago

1.8.1-next.128

8 months ago

1.8.1-next.125

8 months ago

1.8.1-next.126

8 months ago

1.8.1-next.129

8 months ago

1.8.1-next.112

9 months ago

1.8.1-next.113

9 months ago

1.8.1-next.110

9 months ago

1.8.1-next.111

9 months ago

1.8.1-next.116

9 months ago

1.8.1-next.117

9 months ago

1.8.1-next.114

9 months ago

1.8.1-next.118

9 months ago

1.8.1-next.119

9 months ago

2.0.1

5 months ago

2.0.0

6 months ago

1.8.1-next.130

7 months ago

1.8.1-next.131

7 months ago

1.8.1-next.134

7 months ago

1.8.1-next.132

7 months ago

1.8.1-next.133

7 months ago

1.8.1-next.81

10 months ago

1.8.1-next.83

10 months ago

1.8.1-next.82

10 months ago

1.8.1-next.85

10 months ago

1.8.1-next.84

10 months ago

1.8.1-next.87

10 months ago

1.8.1-next.86

10 months ago

1.8.1-next.89

10 months ago

1.8.1-next.88

10 months ago

1.8.1-next.90

10 months ago

1.8.1-next.92

10 months ago

1.8.1-next.91

10 months ago

1.8.1-next.94

10 months ago

1.8.1-next.95

10 months ago

1.8.1-next.98

10 months ago

1.8.1-next.97

10 months ago

1.8.1-next.99

10 months ago

1.8.1-next.67

11 months ago

1.8.1-next.66

11 months ago

1.8.1-next.69

11 months ago

1.8.1-next.68

11 months ago

1.8.1-next.70

11 months ago

1.8.1-next.72

11 months ago

1.8.1-next.71

11 months ago

1.8.1-next.74

11 months ago

1.8.1-next.73

11 months ago

1.8.1-next.76

11 months ago

1.8.1-next.75

11 months ago

1.8.1-next.78

11 months ago

1.8.1-next.77

11 months ago

1.8.1-next.79

10 months ago

1.8.1-next.80

10 months ago

1.8.1-next.65

11 months ago

1.8.1-next.64

11 months ago

1.8.1-next.21

12 months ago

1.8.1-next.20

12 months ago

1.8.1-next.25

12 months ago

1.8.1-next.24

12 months ago

1.8.1-next.27

12 months ago

1.8.1-next.26

12 months ago

1.8.1-next.29

12 months ago

1.8.1-next.28

12 months ago

1.8.1-next.30

12 months ago

1.8.1-next.32

12 months ago

1.8.1-next.31

12 months ago

1.8.1-next.34

12 months ago

1.8.1-next.33

12 months ago

1.8.1-next.36

12 months ago

1.8.1-next.35

12 months ago

1.8.1-next.38

12 months ago

1.8.1-next.37

12 months ago

1.8.1-next.39

12 months ago

1.8.1-next.41

12 months ago

1.8.1-next.40

12 months ago

1.8.1-next.43

11 months ago

1.8.1-next.42

12 months ago

1.8.1-next.45

11 months ago

1.8.1-next.44

11 months ago

1.8.1-next.47

11 months ago

1.8.1-next.46

11 months ago

1.8.1-next.49

11 months ago

1.8.1-next.48

11 months ago

1.8.1-next.50

11 months ago

1.8.1-next.52

11 months ago

1.8.1-next.51

11 months ago

1.8.1-next.54

11 months ago

1.8.1-next.56

11 months ago

1.8.1-next.55

11 months ago

1.8.1-next.58

11 months ago

1.8.1-next.57

11 months ago

1.8.1-next.59

11 months ago

1.8.1-next.61

11 months ago

1.8.1-next.60

11 months ago

1.8.1-next.63

11 months ago

1.8.1-next.62

11 months ago

1.7.3

11 months ago

1.7.2

12 months ago

1.5.26-alpha.1

1 year ago

1.5.26-alpha.0

1 year ago

1.8.1-next.18

12 months ago

1.8.1-next.19

12 months ago

1.5.23

1 year ago

1.5.25

1 year ago

1.5.24

1 year ago

1.5.27

1 year ago

1.5.29

1 year ago

1.5.28

1 year ago

1.5.16

1 year ago

1.5.15

1 year ago

1.5.19

1 year ago

1.5.12

1 year ago

1.5.14

1 year ago

1.5.13

1 year ago

1.5.9

1 year ago

1.5.8

1 year ago

1.5.7

1 year ago

1.5.4

2 years ago

1.5.11

1 year ago

1.4.21

2 years ago

1.5.2

2 years ago

1.5.1

2 years ago

1.5.0

2 years ago

1.4.20

2 years ago

1.4.15

2 years ago

1.4.16

2 years ago

1.4.14

2 years ago

1.4.13

2 years ago

1.4.12

2 years ago

1.4.11

2 years ago

1.4.10

2 years ago

1.4.9

2 years ago

1.4.8

2 years ago

1.4.5

2 years ago

1.4.3

2 years ago

1.4.7

2 years ago

1.4.2

2 years ago

1.4.1

2 years ago

1.2.96

2 years ago

1.2.97

2 years ago

1.3.7

2 years ago

1.3.5

2 years ago

1.3.4

2 years ago

1.3.3

2 years ago

1.3.2

2 years ago

1.3.1

2 years ago

1.2.92

2 years ago

1.2.93

2 years ago

1.2.94

2 years ago

1.2.95

2 years ago

1.2.81

2 years ago

1.2.82

2 years ago

1.2.85

2 years ago

1.2.86

2 years ago

1.2.83

2 years ago

1.2.88

2 years ago

1.2.90

2 years ago

1.2.91

2 years ago

1.2.78

2 years ago

1.2.77

3 years ago

1.2.75

3 years ago

1.2.76

3 years ago

1.2.72

3 years ago

1.2.71

3 years ago

1.2.67

3 years ago

1.2.60

3 years ago

1.2.62

3 years ago

1.2.57

3 years ago

1.2.55

3 years ago

1.2.53

3 years ago

1.2.52

3 years ago

1.2.50

3 years ago

1.2.51

3 years ago

1.2.48

3 years ago

1.2.41

3 years ago

1.2.42

3 years ago

1.2.40

3 years ago

1.2.39

3 years ago

1.2.35

3 years ago

1.2.32

3 years ago

1.2.33

3 years ago

1.2.36

3 years ago

1.2.30

3 years ago

1.2.28

3 years ago

1.2.27

3 years ago

1.2.24

3 years ago

1.2.23

3 years ago

1.2.21

3 years ago

1.2.19

3 years ago

1.2.17

3 years ago

1.2.16

3 years ago