# kxmagic **Repository Path**: lkx2217/kxmagic ## Basic Information - **Project Name**: kxmagic - **Description**: No description available - **Primary Language**: JavaScript - **License**: MIT - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2019-06-17 - **Last Updated**: 2022-05-21 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # kxmagic Based on webpack4 front-end scaffolding ## Version Latest version number 1.2.3 ## Open source kxmagic is open source software released under an [MIT license](https://github.com/Lkx2217/kxmagic/blob/master/LICENSE). ## Catalog ``` │ ├─ package // Project dependent module description file ├─ README // Explain ├─ utils // Compiling a package dependency file ├─ webpack.dev // Developing environment configuration file ├─ webpack.prod // Production environment configuration file ├─ webpack.config // General configuration file ├─ postcss.config // Postcss-loader configuration file ├─ LICENSE // Open source rules │ ├─ dist // Production environment code │ ├─ src // Source code for front-end development │ ├─ assets // Front-end development of public resources(css , js , img) │ ├─ components // Front-end development module │ ├─ pages // Front-end development of HTML templates │ └─ main // Public documents │ ├─ static // Third party static resource file directory │ ├─ font // Third party font files │ └─ lib // Third party resource repository │ └─ node_modules // Front-end development dependent packages ``` ## Download You can download the project to your file by using the following commands. ```sh git clone https://github.com/Lkx2217/kxmagic.git ``` And then you need to get into the project ```sh cd kxmagic ``` ## Development First make sure that you have installed all the dependencies. ```sh npm install ``` Then you can execute the following command to open the local server. ```sh npm run dev ``` If you need to pack the production environment, you can execute the following code ```sh npm run build ```