connext-cli is a command-line tool designed to quickly scaffold web development projects using pre-configured templates for HTML, JavaScript, and TypeScript.
To install connext-cli
globally on your system using npm, run the following command:
npm install -g connext-cli
After installation, you can start using the connext-cli
tool to initialize new projects. Here’s an example:
connext create
Follow the interactive prompts to set up your project. You'll be asked to select a template (HTML, JavaScript, or TypeScript), and the tool will scaffold a new project accordingly.
-
connext create
: Initializes a new project with your choice of template. -
connext --help
: Shows the help menu with available commands and options.
- Project scaffolding with pre-configured templates (HTML, JS, TS).
- Automatically installs project dependencies.
- Easy-to-use interactive prompts.
To create a new project using the HTML template, run:
connext create
Select "HTML" from the template options when prompted.
To create a new JavaScript project, run:
connext create
Select "JavaScript" from the template options when prompted.
The following tools are required to use connext-cli
:
- Node.js v14 or later
- NPM or Yarn
We welcome contributions! Please follow these steps to contribute:
- Fork the repository.
- Create a new feature branch (
git checkout -b feature/your-feature
). - Commit your changes (
git commit -m 'Add some feature'
). - Push the branch (
git push origin feature/your-feature
). - Open a pull request.
connext-cli is licensed under the ISC license. See the LICENSE file for details.
If you encounter any issues or have questions, please open an issue on our GitHub Issues page.