Dashbling 开源项目教程

Dashbling 开源项目教程

dashblingHackable React based dashboards for developers, inspired by Dashing.项目地址:https://gitcode.com/gh_mirrors/da/dashbling

1. 项目的目录结构及介绍

Dashbling 项目的目录结构如下:

dashbling/
├── docs/
│   └── getstarted.md
├── example/
│   └── example.jpg
├── hooks/
├── packages/
├── script/
├── .editorconfig
├── .gitignore
├── .prettierignore
├── .tool-versions
├── LICENSE
├── README.md
├── lerna.json
├── package.json
├── tsconfig.json
└── yarn.lock

目录介绍:

  • docs/: 包含项目的文档文件,如入门指南 getstarted.md
  • example/: 包含示例文件,如 example.jpg
  • hooks/: 包含项目的钩子文件。
  • packages/: 包含项目的包文件。
  • script/: 包含项目的脚本文件。
  • .editorconfig: 编辑器配置文件。
  • .gitignore: Git 忽略文件配置。
  • .prettierignore: Prettier 忽略文件配置。
  • .tool-versions: 工具版本配置文件。
  • LICENSE: 项目许可证文件。
  • README.md: 项目说明文件。
  • lerna.json: Lerna 配置文件。
  • package.json: 项目依赖和脚本配置文件。
  • tsconfig.json: TypeScript 配置文件。
  • yarn.lock: Yarn 锁定文件。

2. 项目的启动文件介绍

Dashbling 项目的启动文件主要位于 package.json 中定义的脚本部分。以下是一些关键的启动脚本:

{
  "scripts": {
    "start": "webpack-dev-server --config webpack.config.js --mode development",
    "build": "webpack --config webpack.config.js --mode production",
    "test": "jest"
  }
}

启动脚本介绍:

  • start: 启动开发服务器,使用 webpack-dev-server 进行热重载。
  • build: 构建生产环境的代码,使用 webpack 进行打包。
  • test: 运行测试,使用 jest 进行单元测试。

3. 项目的配置文件介绍

Dashbling 项目的关键配置文件包括:

  • webpack.config.js: Webpack 配置文件,定义了如何打包和构建项目。
  • tsconfig.json: TypeScript 配置文件,定义了 TypeScript 编译选项。
  • package.json: 项目依赖和脚本配置文件,包含了项目的依赖包和启动脚本。

webpack.config.js 配置文件介绍:

module.exports = {
  entry: './src/index.js',
  output: {
    path: path.resolve(__dirname, 'dist'),
    filename: 'bundle.js'
  },
  module: {
    rules: [
      {
        test: /\.js$/,
        exclude: /node_modules/,
        use: {
          loader: 'babel-loader'
        }
      }
    ]
  },
  plugins: [
    new HtmlWebpackPlugin({
      template: './src/index.html'
    })
  ]
};

tsconfig.json 配置文件介绍:

{
  "compilerOptions": {
    "target": "ES6",
    "module": "commonjs",
    "outDir": "./dist",
    "strict": true
  },
  "include": [
    "./src/**/*"
  ]
}

package.json 配置文件介绍:

{
  "name": "dashbling",
  "version": "1.0.0",
  "description": "Hackable React based dashboards for developers",
  "main": "index.js",
  "scripts": {
    "start": "webpack-dev-server --config webpack.config.js --mode development",
    "build": "webpack --config webpack.config.js --mode production",
    "test": "jest"
  },
  "dependencies": {
    "react": "^17.0.2",
    "react-dom": "^17.0.2"
  },
 

dashblingHackable React based dashboards for developers, inspired by Dashing.项目地址:https://gitcode.com/gh_mirrors/da/dashbling

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

邵瑗跃Free

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值