Coder Social home page Coder Social logo

ptkdev-boilerplate / node-cli-boilerplate Goto Github PK

View Code? Open in Web Editor NEW
25.0 3.0 3.0 2.3 MB

๐Ÿช“ Create node cli with this user friendly boilerplate

Home Page: https://npmjs.com/package/@ptkdev/node-cli-boilerplate

License: Other

Shell 0.79% JavaScript 12.50% TypeScript 81.69% Smarty 5.02%
cli command-line-tool command-line command-line-interface command-line-app nodejs node node-module typescript cli-tools

node-cli-boilerplate's Introduction

๐Ÿช“ node-cli-boilerplate

v3.0.4-nightly.0 License: MIT Language: TypeScript ECMAScript: 2019 Discord Server

Create node cli with this user friendly boilerplate. Use this respository as template for your new npm command line interface project

This is a github template, you can fork it or use as template for start new project with this repository as hello-world. I hate start new project with empty template, often i missing correct configuration, readme instruction or i need of samples of code. Use this repository as template solve this problem.

๐ŸŽ Support: Donate

This project is free, open source and I try to provide excellent free support. Why donate? I work on this project several hours in my spare time and try to keep it up to date and working. THANK YOU!

Donate Paypal Donate Ko-Fi Donate Github Sponsors Donate Patreon Donate Bitcoin Donate Ethereum

๐Ÿ“Ž Menu

๐Ÿ’ก Features

  • [โœ”๏ธ] Easy to use
  • [โœ”๏ธ] MIT License
  • [โœ”๏ธ] Make CLI Package for npm
  • [โœ”๏ธ] Friendly boilerplate + Github templates
  • [โœ”๏ธ] Typescript + TSPaths preconfigured
  • [โœ”๏ธ] Userfriendly folders tree
  • [โœ”๏ธ] Prettiers and ESLint preconfigured
  • [โœ”๏ธ] all-contributors-cli and all-shields-cli preconfigured
  • [โœ”๏ธ] JEST Test preconfigured
  • [โœ”๏ธ] Full async code
  • [โœ”๏ธ] Github and Vscode dotfiles preconfigured
  • [โœ”๏ธ] Translations: ๐Ÿ‡ฌ๐Ÿ‡ง ๐Ÿ‡ฎ๐Ÿ‡น ๐Ÿ‡ต๐Ÿ‡ฑ (Help me โค๏ธ)

๐Ÿš€ Usage

  1. Install cli package globally: npm install @ptkdev/node-cli-boilerplate -g
  2. Run anywhere: node-cli-boilerplate

You can use npx, example: npx @ptkdev/node-cli-boilerplate

๐Ÿ”จ Developer Mode

๐Ÿ Run Project

  1. Clone this repository or download nightly, beta or stable.
  2. Run npm install
  3. Run npm run dev for watch mode

If you want to try cli locally:

  1. Run npm run release
  2. Run npm link (on unix/mac use sudo npm link)
  3. Run node-cli-boilerplate anywhere for execute command line tool

For uninstall it run npm unlink (on unix/mac use sudo npm unlink)

๐Ÿ’พ Setup Project

If you want replace all strings (example: package name, author, urls, etc...) in markdown file, source files and others files of this project you need edit setup.json with correct values and run npm run setup.

๐Ÿš€ Deploy

For create npm package:

  • Run npm run release
  • Run npm publish

๐Ÿ“š Documentation

Run npm run docs

๐Ÿ‘‘ Backers and Sponsors

Thanks to all our backers! ๐Ÿ™ Donate 3$ or more on paypal, ko-fi or github and send me email with your avatar and url.

๐Ÿ‘จโ€๐Ÿ’ป Contributing

I โค๏ธ contributions! I will happily accept your pull request! (IMPORTANT: Only to nightly branch!) Translations, grammatical corrections (GrammarNazi you are welcome! Yes my English is bad, sorry), etc... Do not be afraid, if the code is not perfect we will work together ๐Ÿ‘ฏ and remember to insert your name in .all-contributorsrc and package.json file.

Thanks goes to these wonderful people (emoji key):

Patryk Rzucidล‚o
Patryk Rzucidล‚o

๐Ÿ’ป ๐ŸŒ ๐Ÿ“– ๐Ÿ›

๐Ÿ’ฐ In the future, if the donations allow it, I would like to share some of the success with those who helped me the most. For me open source is share of code, share development knowledges and share donations!

๐Ÿฆ„ Other Projects

๐Ÿ’ซ License

  • Code and Contributions have MIT License
  • Images and logos have CC BY-NC 4.0 License
  • Documentations and Translations have CC BY 4.0 License

node-cli-boilerplate's People

Contributors

ptkdev avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar

node-cli-boilerplate's Issues

Missing dependency during build process

Versions

  • App Version: v2.0.2
  • Node Version: v14.19.1
  • Operating System: Ubuntu 20.04
  • Browser: N/A

Expected Behavior

Run the npm run build without errors.

Actual Behavior

There is an error during the build process.

$ npm run build

> @ptkdev/[email protected] build /<path>
> tsc

app/translations/translate.ts:10:21 - error TS2307: Cannot find module '@configs/config' or its corresponding type declarations.

10 import configs from "@configs/config";
                       ~~~~~~~~~~~~~~~~~

app/utils/logger.ts:12:20 - error TS2307: Cannot find module '@configs/config' or its corresponding type declarations.

12 import config from "@configs/config";
                      ~~~~~~~~~~~~~~~~~


Found 2 errors.

npm ERR! code ELIFECYCLE
npm ERR! errno 2
npm ERR! @ptkdev/[email protected] build: `tsc`
npm ERR! Exit status 2
npm ERR! 
npm ERR! Failed at the @ptkdev/[email protected] build script.
npm ERR! This is probably not a problem with npm. There is likely additional logging output above.

npm ERR! A complete log of this run can be found in:
npm ERR!     /<path>/.npm/_logs/2022-04-04T17_11_13_979Z-debug.log

Steps to Reproduce

  1. Run npm install
  2. Run npm run build

Evidences

$ npm install
npm WARN read-shrinkwrap This version of npm is compatible with lockfileVersion@1, but package-lock.json was generated for lockfileVersion@2. I'll try to do my best with it!

> [email protected] postinstall /<path>/node_modules/nodemon
> node bin/postinstall || exit 0


> @ptkdev/[email protected] prepare /<path>
> ts-patch install -s && husky install

husky - Git hooks installed
npm WARN optional SKIPPING OPTIONAL DEPENDENCY: [email protected] (node_modules/livereload/node_modules/fsevents):
npm WARN notsup SKIPPING OPTIONAL DEPENDENCY: Unsupported platform for [email protected]: wanted {"os":"darwin","arch":"any"} (current: {"os":"linux","arch":"x64"})
npm WARN optional SKIPPING OPTIONAL DEPENDENCY: [email protected] (node_modules/fsevents):
npm WARN notsup SKIPPING OPTIONAL DEPENDENCY: Unsupported platform for [email protected]: wanted {"os":"darwin","arch":"any"} (current: {"os":"linux","arch":"x64"})

added 1003 packages from 630 contributors in 41.758s

75 packages are looking for funding
  run `npm fund` for details

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.