码迷,mamicode.com
首页 > Web开发 > 详细

原创全新打包工具Parcel零配置VueJS开发脚手架

时间:2018-11-14 19:50:19      阅读:187      评论:0      收藏:0      [点我收藏+]

标签:github   log   hello   开发环境   href   命令行   err   one   tab   

parcel-vue 一个基于Parcel打包工具的 VueJS急速开发脚手架解决方案,强烈建议使用node8.0以上

项目地址: https://github.com/w3c-king/p...

初始化项目

$ git clone https://github.com/w3c-king/parcel-vue.git


<h4>安装依赖</h4>
<pre class="brush:shell">$ cd parce-vue
$ npm install

其中parcel-bundler是主要的工具,对于vue结尾的单文件,需要单独处理文件类型,
parcel-plugin-vue这个插件会通过vueify来生成对应的代码,parcel会自动加载parcel-plugin开头的依赖。

运行开发环境,运行成功后打开浏览器 http://localhost:1234 查看项目

$ npm run dev


<h4>打包编译</h4>
<pre class="brush:shell">$ npm run build

开发

目录结构

src
├── router
    ├── index.js
├── assets
    ├── logo.png
├── components
    ├── Hello
        ├── index.js
    ├── index.js
├── views
    ├── HelloWorld
        ├── images
            ├── logo.png
        ├── HelloWorld.vue
├── styles
    ├── common.css
├── store
    ├── global
        ├── global.js
        ├── index.js
    ├── index.js
├── app.vue
├── index.js

只需要执行npm run devnpm run build 就可以进行开发和构建。

nodejs版本升级,如果您的node版本低于8.0,我们强烈建议您升级node版本(命令行升级不支持windows)

$ npm install -g n
$ n stable
```

原文地址:https://segmentfault.com/a/1190000012767502

原创全新打包工具Parcel零配置VueJS开发脚手架

标签:github   log   hello   开发环境   href   命令行   err   one   tab   

原文地址:https://www.cnblogs.com/lalalagq/p/9959869.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!