Giter Club home page Giter Club logo

Comments (8)

kiyonlin avatar kiyonlin commented on May 9, 2024

LOGO: dawn on the ocean

       __
   ___/ /__ __    _____
 ~/ _  / _ '/ |/|/ / _ \~
~~\_,_/\_,_/|__,__/_//_/~~
 ~~~  ~~ ~~~~~~~~~ ~~~~~~

Special thanks to patorjk.com.

from dawn.

kiyonlin avatar kiyonlin commented on May 9, 2024

dawn-cli v0.0.1

       __
   ___/ /__ __    _____    dawn-cli v0.0.1
 ~/ _  / _ '/ |/|/ / _ \~  For the opinionated lightweight framework dawn
~~\_,_/\_,_/|__,__/_//_/~~ Visit https://github.com/kiyonlin/dawn for detail
 ~~~  ~~ ~~~~~~~~~ ~~~~~~  (c) since 2020 by [email protected]

USAGE:
   dawn [global options] command [command options] [arguments...]

COMMANDS:
   help, h  Shows a list of commands or help for one command

GLOBAL OPTIONS:
   --help, -h     show help (default: false)
   --version, -v  print dawn version (default: false)

from dawn.

kiyonlin avatar kiyonlin commented on May 9, 2024

Add new command

       __
   ___/ /__ __    _____    dawn-cli v0.0.1
 ~/ _  / _ '/ |/|/ / _ \~  For the opinionated lightweight framework dawn
~~\_,_/\_,_/|__,__/_//_/~~ Visit https://github.com/kiyonlin/dawn for detail
 ~~~  ~~ ~~~~~~~~~ ~~~~~~  (c) since 2020 by [email protected]

USAGE:
   dawn [global options] command [command options] [arguments...]

COMMANDS:
   new, n   Generate a new dawn project
   help, h  Shows a list of commands or help for one command

GLOBAL OPTIONS:
   --help, -h     show help (default: false)
   --version, -v  print dawn version (default: false)

dawn new --help

NAME:
   dawn new - Generate a new dawn project

USAGE:
   new [options] project [mod name]

OPTIONS:
   --app       create an application project (default: false)
   --help, -h  show help (default: false)

dawn new dawn-demo

go: creating new go.mod: module dawn-demo
go: finding module for package github.com/kiyonlin/dawn/fiberx
go: finding module for package github.com/gofiber/fiber/v2
go: finding module for package github.com/kiyonlin/dawn
go: found github.com/gofiber/fiber/v2 in github.com/gofiber/fiber/v2 v2.0.4
go: found github.com/kiyonlin/dawn in github.com/kiyonlin/dawn v0.3.0

Scaffolding project in /path/to/pwd/dawn-demo (module dawn-demo)

  Done. Now run:

  cd dawn-demo
  go run .

โœจ  Done in 3.130166283s.

from dawn.

kiyonlin avatar kiyonlin commented on May 9, 2024

dawn -v

dawn version: v0.3.0(latest v0.3.0)
dawn version: open go.mod: no such file or directory(latest v0.3.0)

from dawn.

kiyonlin avatar kiyonlin commented on May 9, 2024

v0.0.2 with dawn module

       __
   ___/ /__ __    _____    dawn-cli v0.0.2
 ~/ _  / _ '/ |/|/ / _ \~  For the opinionated lightweight framework dawn
~~\_,_/\_,_/|__,__/_//_/~~ Visit https://github.com/kiyonlin/dawn for detail
 ~~~  ~~ ~~~~~~~~~ ~~~~~~  (c) since 2020 by [email protected]

USAGE:
   dawn [global options] command [command options] [arguments...]

COMMANDS:
   new, n     Generate a new dawn project
   module, m  Generate a new dawn module
   help, h    Shows a list of commands or help for one command

GLOBAL OPTIONS:
   --help, -h     show help (default: false)
   --version, -v  print dawn version (default: false)

dawn help module

NAME:
   dawn module - Generate a new dawn module

USAGE:
   dawn module name

dawn module hello

Scaffolding module in /path/to/pwd/dawn-demo/hello

  Done. Now run:

  cd hello
  go test . -cover

๐ŸŽŠ  Done in 563.455ยตs.

from dawn.

kiyonlin avatar kiyonlin commented on May 9, 2024

dawn dev is inspired by air.

Use fsnotify to watch files and rerun the dawn project.

Options will be:

  • root: Path to be watched, default value is .
  • path: Dev invokes go build path, default value is .
  • extensions: File extensions to watch, default value is go,tmpl,tpl,html
  • exclude_dir: Ignore these directories, default value is assets,tmp,vendor,node_modules
  • exclude_file: Ignore these files, default is ""
  • delay: It's not necessary to trigger rerun each time file changes if it's too frequent, default value is 1s

from dawn.

kiyonlin avatar kiyonlin commented on May 9, 2024

v0.0.3 with dawn dev

       __
   ___/ /__ __    _____    dawn-cli v0.0.3
 ~/ _  / _ '/ |/|/ / _ \~  For the opinionated lightweight framework dawn
~~\_,_/\_,_/|__,__/_//_/~~ Visit https://github.com/kiyonlin/dawn for detail
 ~~~  ~~ ~~~~~~~~~ ~~~~~~  (c) since 2020 by [email protected]

USAGE:
   dawn [global options] command [command options] [arguments...]

COMMANDS:
   new, n     Generate a new dawn project
   module, m  Generate a new dawn module
   dev        Rerun the dawn project if watched files change
   help, h    Shows a list of commands or help for one command

GLOBAL OPTIONS:
   --help, -h     show help (default: false)
   --version, -v  print dawn version (default: false)

dawn help dev

NAME:
   dawn dev - Rerun the dawn project if watched files change

USAGE:
   dawn dev [options]

OPTIONS:
   --root value, -r value             root path for watch, all files must be under root (default: ".")
   --target value, -t value           target path for go build (default: ".")
   --extensions value, --ext value    file extensions to watch (default: "go", "tmpl", "tpl", "html")
   --exclude_dirs value, --ed value   ignore these directories (default: "assets", "tmp", "vendor", "node_modules")
   --exclude_files value, --ef value  ignore these files
   --delay value, -d value            delay to trigger rerun (default: 1s)

dawn dev

2020/10/10 08:37:58 Welcome to dawn dev ๐Ÿ‘‹
2020/10/10 08:38:00 Compile done!
2020/10/10 08:38:00 New pid is 62012

 โ”Œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”
 โ”‚                    Fiber v2.0.6                   โ”‚
 โ”‚               http://127.0.0.1:3000               โ”‚
 โ”‚                                                   โ”‚
 โ”‚ Handlers ............. 5  Threads ............. 8 โ”‚
 โ”‚ Prefork ....... Disabled  PID ............. 62012 โ”‚
 โ””โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”˜

^C2020/10/10 08:38:06 See you next time ๐Ÿ‘‹

from dawn.

kiyonlin avatar kiyonlin commented on May 9, 2024

v0.0.7 with cobra and dawn generate

       __
   ___/ /__ __    _____    dawn-cli v0.0.7
 ~/ _  / _ '/ |/|/ / _ \~  For the opinionated lightweight framework dawn
~~\_,_/\_,_/|__,__/_//_/~~ Visit https://github.com/kiyonlin/dawn for detail
 ~~~  ~~ ~~~~~~~~~ ~~~~~~  (c) since 2020 by [email protected]

Usage:
  dawn [flags]
  dawn [command]

Available Commands:
  dev         Rerun the dawn project if watched files changed
  generate    Generate boilerplate code with different commands
  help        Help about any command
  new         Generate a new dawn project
  version     Print the version number of dawn

Flags:
  -h, --help   help for dawn

Use "dawn [command] --help" for more information about a command.

dawn help generate

Generate boilerplate code with different commands

Usage:
  dawn generate [flags]
  dawn generate [command]

Aliases:
  generate, g

Available Commands:
  module      Generate a new dawn module

Flags:
  -h, --help   help for generate

Use "dawn generate [command] --help" for more information about a command.

from dawn.

Related Issues (3)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.