Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Cn 1 feature implement commander #16

Merged
merged 2 commits into from
Mar 25, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
27 changes: 24 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,25 @@
# Create-node-template

<style>
.banner {
background: radial-gradient(circle, rgba(221, 94, 77, 1) 10%, rgba(40, 41, 43, 1) 100%);
}
</style>

<div align="center" class="banner">
<img
src="https://github.com/AndyOooh/create-node-template/assets/60953822/37c52285-cbe3-43c2-a1e8-65c8f449a800"
alt="React Hook Form Logo - React hook custom hook for form validation"
/>
<img
src="https://github.com/AndyOooh/create-node-template/assets/60953822/087cf649-c56e-4d4c-b686-e8819432c8f6"
/>
</div>

<!-- ![node-js-seeklogo](https://github.com/AndyOooh/create-node-template/assets/60953822/37c52285-cbe3-43c2-a1e8-65c8f449a800)

![express-seeklogo](https://github.com/AndyOooh/create-node-template/assets/60953822/087cf649-c56e-4d4c-b686-e8819432c8f6) -->

## Description

This project is a template for creating a new node project. It is a CLI tool that will create a new project with the following features:
Expand All @@ -8,7 +28,7 @@ This project is a template for creating a new node project. It is a CLI tool tha

## Prerequisites

- Node.js v 16.7.0 or higher (required by experimental ``fs.cp`` in node-basic)
- Node.js v 16.7.0 or higher (required by experimental `fs.cp` in node-basic)

## How to use

Expand All @@ -21,9 +41,10 @@ npx create-node-template <project-name> --flags
3. Select template (node-basic, express-basic, express-advanced).

## Features
- Import path aliases.

- Import path aliases.
- Eslint flat config file (needs VSCode setting).
-
-

## References

Expand Down
17 changes: 17 additions & 0 deletions lala.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
<style>
.banner {
/* background-color: #f3f3f3; */
/* background: #f3f3f3; */
background: radial-gradient(circle, rgba(221, 94, 77, 1) 10%, rgba(40, 41, 43, 1) 100%);
}
</style>

<div align="center" class="banner">
<img
src="https://github.com/AndyOooh/create-node-template/assets/60953822/37c52285-cbe3-43c2-a1e8-65c8f449a800"
alt="React Hook Form Logo - React hook custom hook for form validation"
/>
<img
src="https://github.com/AndyOooh/create-node-template/assets/60953822/087cf649-c56e-4d4c-b686-e8819432c8f6"
/>
</div>
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "create-node-template",
"description": "Create node.js/express boilerplate with one command",
"author": "AndyOooh",
"version": "0.1.12",
"version": "0.1.13",
"exports": "./src/index.js",
"type": "module",
"engines": {
Expand Down
Loading