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

[NEW] : New CLI and project #56

Open
anikethsaha opened this issue Sep 11, 2019 · 2 comments
Open

[NEW] : New CLI and project #56

anikethsaha opened this issue Sep 11, 2019 · 2 comments
Labels
CLI About CLI help wanted Extra attention is needed NEW PACKAGE New cli and package related Plugins

Comments

@anikethsaha
Copy link
Owner

anikethsaha commented Sep 11, 2019

Hi ! 🚀

📄 Goal and about

Currently, this is a simple cli tool for generating web app projects like using MERN stack based on a few questions and some build and development-related questions as well as preferred bundler and all.

Goal. What I want to achieve is a tool that will eliminate the requirement of adding boilerplates manually. the goal extends to a point where I whole adding of boilerplates should be flexible and customizable. As a user I would like to have more options on my bundler or on my styling options, I want a plugin to update my webpack.config.js when I am changing my style loaders or changing my scss to postcss or similar and many other use cases. It will be used as a pair programmer rather than a project generator.

The most important thing about this project will be how plugins are integrating and how they will work. and I consider this as most challenging thing of this project. Plugins will load more than 70% work of using this package. And writing plugins should be simple.

📣 Re-Written of the CLI

Not a new version, its gonna be a new package.

Current Implementation

Currently, the cli is using templates architecture where it is being shipped of the templates while installing which can increase the bundle size of the project and also increase the install time.
We have Three templates right now and have a plane to increase them to more number in future as the goal of this CLI is to become a single app generator for all kind, type, the stack of the project.

New Architecture plan

1. No templates packages in the project core:

  • In order to reduce the size and time, no templates are gonna live inside the core package and also not in this repo.
  • We are going to adopt the cloning mechanism, and more details about the clone flow will be discussed below or in a separate issue
  • Like how gatsby-cli does.

2. Plugin Architecture Most Exciting Plan:

  • I have an on-going plan to make it pluggable. These plugins are gonna be separate packages. And each plugin will do a particular set of work.
  • Small work like database managing and connecting plugin, Styling managing and creating a plugin, adding passportjs in your project plugin, etc.
  • More about these plugin types and how this will be implemented will be discussed in a separate issue.

3. Config file :

  • Surely gonna have this config file thing for using the cli as an one more option to use the package.
  • A Global Config File system, which is going to have a config file and whenever the cli is running it will load this if CLI finds it!

4. Monorepo:

  • The whole project will be a mono repo based project with the core cli logic in the core package. Also, there will core plugins and utility methods in this repo as monorepo.
  • Future plans for the GUI version of the cli will be added as monorepo too. Although not sure about this just a thought.

5. Anything to make it FAST:

  • This is going to be our main priority. I am ready to compromise additional features in order to make it awesomely fast.
  • Planning to have a caching system in order to cache the plugins, packages and also the user's interactions

Working flow not final yet:

  1. When starting the cli, you can either pass the Github link to the boilerplate you want to use or the CLI will prompt to ask for it.

    • It will first check for some specific files in the boilerplate project and if it finds it okay to make it customizable and pluggable. then it will install it and will do further work

    • If not, then it will scan the github keywords used in that project and will recommend you based on that keywords. It will try to recommend any default or official boilerplates.

    • command will look similar like this :

      • if passing the boilerplater then may like -b [URL] or if not passing the boilerplate , just
        simply running the CLI , it will start an interactive prompt
  2. Work of the Interactive prompt:

    • used will be asked some basic questions like, is it a website with or without server, (basic)

    • then if with the server then chained of questions like server framework or raw? , need a database? if yes then type and preferred ORM for it?. (an advance question which may not be required to answer)

    • Then question for frontends framework, (basic)

    • need state management if supported?, then need SSR if supported?

    • Then language type like TS or JS (an advance question which may not be required to answer)

    • Preferred bundlers, styling thing. (an advance question which may not be required to answer)

    • PWA ? or need minimal alternatives to framework like Preact for react etc.(an advance question which may not be required to answer) ,

  3. Using the config file, :

    • May be using flags like -c [path] it will look for global config file if the path is not passed else it will load the config file mentioned in the path
    • then it will use this config file to create the project.
  4. Where plugin will come?

    • there will be some default plugins that will be used during the build time like, webpack plugin, or postcss plugin which will be used based on selecting the stack or framework preference. , Like when we select PWA, a PWA managing plugin will be run to handle it.
    • We can say like this. Based on these basic question, the boilerplate project will be selected and Based on the advance question, the plugin will be selected to customize those boilerplates
    • And there will be plugins, which we can add using similar commands like --plugin <plguin-name> inside our project structure and then it will create config file inside the project if not present already, and it will add this plugin name to that config file and then running command like make will run that plugin and also we can prefined plugin(s) in that config file and will run those plugins.

the config file inside the project folder and config file located globally will be different and even with different name ! will have to think about this in details

This is what I got till now !

@anikethsaha
Copy link
Owner Author

Calling For HELP ⭐

  • Getting help from the communities is always awesome to have.

  • As from the plan we can see it is going to be a huge re-written. I handling this alone can be always buggy and not so handy. Would love to get some help here.

  • Also, Will appreciate a lot of people add their own features or better architecture or giving suggestion based on this

  • Getting other's hand for points 2 and 5 will be really helpful for making it better and fast.

Want to discuss or get connected ! Please do ping me :

@anikethsaha
Copy link
Owner Author

anikethsaha commented Sep 11, 2019

Plan for project details ⚡

Changing the name of the project.

Currently, this project name is good and explanatory but still it feels like it is limited to some functionality.
Need to change the project name and will update here itself about the status.
Surely gonna make use of the scoped packages to support the ecosystem of this package.

New ORG for this package in npm

  • Depends on the name, a new org will be created to support it.
    As per the tempory thing, I might move this package to my account or new org and having it developing there.

New logo

To be honest the current repo logo and account logo both sucks. So have to change them. Simple !!

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
CLI About CLI help wanted Extra attention is needed NEW PACKAGE New cli and package related Plugins
Projects
None yet
Development

No branches or pull requests

1 participant