1.0.3 • Published 2 years ago
create-web3-script v1.0.3
create-web3-script
This package includes the global command for Create web3 Script.
Install package
Create a Web3 Script with no build configuration
npm install -global create-web3-script
It is highly recommended to install the package globally so that you can quickly build the scripting framework from any folder with scaffolding
Create Web3 Script for macOS, Windows and Linux.
Quick Overview
npx create-web3-script my-app
cd my-app
npm start
If you have previously create-react-app
installed via the global
you can use npm update create-web3-script
to update the launcher to the latest version
Get Started Immediately
You don’t need to install or configure tools like webpack or Babel. They are preconfigured and hidden so that you can focus on the code.
Create a project, and you’re good to go.
Directory
./
├── LICENSE
├── README.md
├── cache
├── logs
├── config
│ └── config.ini
├── node_modules
├── package-lock.json
├── package.json
├── src
│ ├── app.ts
│ ├── constants
│ │ ├── config.constants.ts
│ │ ├── config.type.ts
│ │ ├── cookie.constants.ts
│ │ └── cookie.type.ts
│ ├── model
│ │ └── examples
│ │ ├── db.ts
│ │ ├── index.ts
│ │ └── simpleExample.ts
├── test
│ └── index.ts
├── tsconfig.json
└── yarn.lock