search
HomeWeb Front-endJS TutorialInitializing the project structure in the front-end project

This time I will bring you the initialization project structure in the front-end project. What are the precautions for initializing the project structure in the front-end project? The following is a practical case, let’s take a look.

I usually work on mobile H5, so I built my own front-end project (x-build) through webpack, mainly compiling stylus, jade, es6, adaptive solutions, and some Some plug-ins I wrote myself.

When working on a new project, every time I copy the folder and then modify package.json, README.md, etc., it feels very "elegant". If I want to use something like vue-cli, use vue init downloaded my own front-end project from github, which looks very "elegant".

Initialize the project structure

First of all, you already have a front-end project you built yourself, assuming it is named x-build and has been uploaded to github.

At this time, create a new project and name it x-build-cli. I refer to vue’s approach, so that even if x-build is updated, x-build-cli is not updated, you can also pull the latest x-build.

mkdir x-build-cli
cd x-build-cli
npm init

Create a folder named x-build-cli, initialize it using npm, create a bin directory inside the folder, and create x- build.js, the project structure at this time:

x-build-cli
  |-  bin
  |     |- x-build.js
  |-  package.json

Configure package.json

"bin": {
  "x-build": "./bin/x-build.js"
}

Add "bin" to package.json, "x-build" is the command number to enter command, "./bin/x-build.js" is the file when the command is executed.

Configuration x-build.js

#! /usr/bin/env node
const program = require('commander');
const download = require('download-git-repo');
const chalk = require('chalk');
const ora = require('ora');

#! /usr/bin/env node specifies that this file is executed using node.

Modules that need to be installed npm i commander download-git-repo chalk ora --save:

commander can parse the commands entered by the user.

download-git-repo Pull the files on github.

chalkChange the color of the output text

oraSmall icons (loading, succeed, warn, etc.)

program
  .version('0.1.0')
  .option('-i, init [name]', '初始化x-build项目')
  .parse(process.argv);

.option ()

-i is an abbreviation, similar to the [name after npm i -g

init ]can be obtained through program.init.

The last item is the description, which will usually be prompted in x-build -h

if (program.init) {
  const spinner = ora('正在从github下载x-build').start();
  download('codexu/x-build#x-build4.1', program.init, function (err) {
    if(!err){
      // 可以输出一些项目成功的信息
      console.info(chalk.blueBright('下载成功'));
    }else{
      // 可以输出一些项目失败的信息
    }
  })
}

ora().start()You can create one loading small icon. >>> For other icons, refer to ora

download() to download the project we need from github. Because we are using a branch, we added #x-build4.1 at the end. , the default is master. ParametersConfiguration referencedownload-git-repo

chalk.blueBright() will convert the output text into blue. >>> For other colors, please refer to chalk

Upload to npm

Students who do not have an account can go to npm to register an account.

// 登录账号
npm login
// 上传项目
npm publish

After the upload is successful, install it into the global environment through npm install x-build-cli -g.

Use build init [project name] to pull the corresponding files from github.

Optimization

The downloaded file at this time is consistent with github. I want to change package.json, change name to the initialized project name, and change versionChanged to 1.0.0.

At this time, you can use node's own api to do it:

const fs = require('fs');
fs.readFile(`${process.cwd()}/${program.init}/package.json`, (err, data) => {
  if (err) throw err;
  let _data = JSON.parse(data.toString())
  _data.name = program.init
  _data.version = '1.0.0'
  let str = JSON.stringify(_data, null, 4);
  fs.writeFile(`${process.cwd()}/${program.init}/package.json`, str, function (err) {
    if (err) throw err;
  })
});

Read the file through readFile, writeFile to write the file, be careful to pass it in when writing StringJSON.stringify(_data, null, 4), this way you can output a formatted json file.

It can be done easily through node. There is a lot of room for development here, so I won’t say more.

Conclusion

If you have any questions, please leave a message in Issues. I also hope that everyone can give me a precious star on my github.

Other article recommendations

x-loader.js image loading control ES6 plug-in

rem adaptive solution·px2rem-loader&hotcss

I believe you have mastered the method after reading the case in this article. For more exciting information, please pay attention to other related articles on the php Chinese website!

Recommended reading:

Detailed explanation of using React high-order components

Encapsulate a function that can obtain the text content of an element

Detailed explanation of the difference between Component and PureComponent

The above is the detailed content of Initializing the project structure in the front-end project. For more information, please follow other related articles on the PHP Chinese website!

Statement
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Windows 无法初始化此硬件的设备驱动程序(代码 37)修复Windows 无法初始化此硬件的设备驱动程序(代码 37)修复Apr 14, 2023 pm 01:22 PM

当 Windows 检测到设备的驱动程序不兼容或损坏时,它无法对其进行初始化。设备停止工作,当用户调查时,“ Windows 无法为此硬件初始化设备驱动程序(代码 37) ”错误消息显示在“设备状态”窗格中。解决这个问题很容易,你可以很容易地做到这一点。修复 1 – 扫描计算机您可以扫描设备以查找任何硬件更改。Windows 最终将检查并检测任何驱动程序更改。1.您只需右键单击“ Windows键”并点击“设备管理器”。2. 当设备管理器出现在您的系统上时,单击菜单栏上的“操作”。3. 在这里,

修复: Windows 无法初始化此硬件的设备驱动程序修复: Windows 无法初始化此硬件的设备驱动程序Apr 13, 2023 pm 01:19 PM

错误代码 37 表示 Windows 检测到设备驱动程序存在问题,无法启动硬件设备。这意味着您的系统上未正确安装软件设备驱动程序,或者您尝试使用的硬件与 Windows 不兼容。您已经知道驱动程序对于设备的平稳运行至关重要,因此如果您要使用硬件设备,则需要立即解决此错误。在本文中,我们将向您展示绕过此错误的各种方法。是什么原因导致 Windows 错误代码 37?当您得到 Windows 无法初始化此硬件的设备驱动程序时。(代码 37) 消息,它可能由几个问题引起,包括:兼容性问题 – 当您将硬

动态链接库初始化例程失败什么办动态链接库初始化例程失败什么办Dec 29, 2023 am 10:30 AM

解决办法:1、重新安装应用程序;2、修复或重新安装DLL;3、系统还原或检查点恢复;4、使用系统文件检查器(SFC)扫描;5、检查启动项和服务;6、使用工具;7、查阅官方文档或论坛;8、考虑安全软件;9、查看事件查看器;10、寻求专家帮助等等。

win7怎么初始化电脑win7怎么初始化电脑Jan 07, 2024 am 11:53 AM

win7系统是一款非常优秀的高性能系统,在对win7的不断使用中有很多的朋友都在问win7怎么初始化电脑!今天小编为大家带来的就是win7电脑恢复出厂设置的操作方法。win7怎么初始化电脑的相关信息:图文详解操作步骤:1、打开“开始菜单”,然后进入。2、点击进入左侧底部的设置。3、在Win10更新和恢复设置的界面中,选择。4、点击“删除所有内容并重新安装Windows”下方的。5、可以看到如下“初始化”设置了,然后点击。6、进入“你的电脑有多个驱动器”设置选项,这里有和两个选项,可以根据情况选择

修复无法初始化PC上的图形系统错误修复无法初始化PC上的图形系统错误Mar 08, 2024 am 09:55 AM

许多游戏玩家遇到了游戏无法初始化图形系统的令人沮丧的问题。这篇文章将深入探讨这个问题背后的常见原因,并找到简单而有效的解决方案,让你重新回到棋盘上,并在任何时间内通过关卡。因此,如果你在过山车大亨、刺客信条、托尼·霍克的职业溜冰者等中收到无法初始化图形系统错误信息,请遵循本文中提到的解决方案。初始化错误无法初始化图形系统。不支持显卡。修复无法初始化图形系统错误信息要解决过山车大亨、刺客信条、托尼·霍克的专业溜冰者等游戏中的无法初始化图形系统错误,可以尝试执行以下解决方法:更新显卡驱动程序在兼容模

如何重置win7网络设置如何重置win7网络设置Dec 26, 2023 pm 06:51 PM

win7系统是一款非常优秀的高性能系统,最近一段时间里有很多win7系统的小伙伴们都在找win7怎么初始化网络设置的方法,今天小编为大家带来的就是win7电脑网络初始化的详细教程一起来看看吧。win7怎么初始化网络设置的详细教程:图文操作步骤:1、点“开始”菜单,找到并打开“控制面板”,进去之后再点“网络和共享中心”。2、然后找到并点开“更改适配器设备”。3、接下来,在打开的窗口中,鼠标右键点击“本地连接”,再点“属性”。4、打开之后,就找到“Internet协议版本(TCP/IPv4)”,再双

C++程序初始化字典C++程序初始化字典Sep 09, 2023 pm 07:01 PM

C++在同名的字典方面与Python不同,但它具有相似功能的相同数据结构。C++支持映射,可在STL类std::map中使用。映射对象在每个条目中包含一对值,一个是键值,另一个是映射值。键值用于在映射中搜索和唯一标识条目。而映射值不一定是唯一的,键值在映射中必须始终是唯一的。让我们看一下如何使用映射。首先,让我们看看如何在C++中定义一个映射数据结构。语法#includemap<data_type1,data_type2>myMap;让我们举个例子,看看如何做到这一点−示例#incl

修复:新 SSD 未在 Windows 11、10 中显示修复:新 SSD 未在 Windows 11、10 中显示Apr 14, 2023 pm 02:52 PM

SSD 彻底改变了技术世界。这些数据存储解决方案凭借其超快和无与伦比的读/写速度,让每个用户都渴望在其中安装系统操作系统。但是,如果您的新 SSD 没有出现在您的 Windows 设备上怎么办?这是插入系统的全新 SSD 可能面临的一个典型问题。不用担心。我们刚刚得到了正确的解决方案,您所要做的就是按照这些步骤操作,SSD 将立即回到您的文件资源管理器。解决方法——1. 检查SSD的连接。如果您使用的是 USB 集线器,请将 SSD 直接连接到您的系统。查看 SSD 的连接器是否有任何物理缺陷。

See all articles

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
2 weeks agoBy尊渡假赌尊渡假赌尊渡假赌
Repo: How To Revive Teammates
1 months agoBy尊渡假赌尊渡假赌尊渡假赌
Hello Kitty Island Adventure: How To Get Giant Seeds
1 months agoBy尊渡假赌尊渡假赌尊渡假赌

Hot Tools

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

EditPlus Chinese cracked version

EditPlus Chinese cracked version

Small size, syntax highlighting, does not support code prompt function

Dreamweaver Mac version

Dreamweaver Mac version

Visual web development tools

Atom editor mac version download

Atom editor mac version download

The most popular open source editor

mPDF

mPDF

mPDF is a PHP library that can generate PDF files from UTF-8 encoded HTML. The original author, Ian Back, wrote mPDF to output PDF files "on the fly" from his website and handle different languages. It is slower than original scripts like HTML2FPDF and produces larger files when using Unicode fonts, but supports CSS styles etc. and has a lot of enhancements. Supports almost all languages, including RTL (Arabic and Hebrew) and CJK (Chinese, Japanese and Korean). Supports nested block-level elements (such as P, DIV),