Vue.JS 学习笔记

学习一个

Posted by cj on April 10, 2019

Vue.JS 学习笔记

为了快速上手,学习 教程,中间踩坑无数,对我这个前端超级菜鸟来说好难啊!把踩过的坑记录下来,以备将来回来嘲笑自己。。。

安装 [email protected]

vagrant@homestead:~$ npm install --global [email protected]
npm WARN deprecated [email protected]: CoffeeScript on NPM has moved to "coffeescript" (no hyphen)
npm WARN checkPermissions Missing write access to /usr/lib/node_modules
npm ERR! path /usr/lib/node_modules
npm ERR! code EACCES
npm ERR! errno -13
npm ERR! syscall access
npm ERR! Error: EACCES: permission denied, access '/usr/lib/node_modules'
npm ERR!  { Error: EACCES: permission denied, access '/usr/lib/node_modules'
npm ERR!   stack: 'Error: EACCES: permission denied, access \'/usr/lib/node_modules\'',
npm ERR!   errno: -13,
npm ERR!   code: 'EACCES',
npm ERR!   syscall: 'access',
npm ERR!   path: '/usr/lib/node_modules' }
npm ERR!
npm ERR! The operation was rejected by your operating system.
npm ERR! It is likely you do not have the permissions to access this file as the current user
npm ERR!
npm ERR! If you believe this might be a permissions issue, please double-check the
npm ERR! permissions of the file and its containing directories, or try running
npm ERR! the command again as root/Administrator (though this is not recommended).

npm ERR! A complete log of this run can be found in:
npm ERR!     /home/vagrant/.npm/_logs/2019-04-10T01_54_11_323Z-debug.log

使用 sudo 解决

项目初始化

vagrant@homestead:~/code$ vue init webpack vuejs-essential

? Project name vuejs-essential
? Project description A Vue.js project
? Author jack-homestead <[email protected]>
? Vue build standalone
? Install vue-router? No
? Use ESLint to lint your code? No
? Set up unit tests No
? Setup e2e tests with Nightwatch? No
? Should we run `npm install` for you after the project has been created? (recom
mended) npm

vue-cli · Generated "vuejs-essential".


# Installing project dependencies ...
# ========================

npm WARN deprecated [email protected]: Browserslist 2 could fail on reading Browserslist >3.0 config used in other tools.
npm WARN deprecated [email protected]: Switch to the `bfj` package for fixes and new features!
npm WARN deprecated [email protected]: Browserslist 2 could fail on reading Browserslist >3.0 config used in other tools.
Unhandled rejection Error: EACCES: permission denied, open '/home/vagrant/.npm/_cacache/index-v5/d0/4d/0d779b188af55718b4171d26d01a41d0c46ab27bc176dc227543a131f462'

Unhandled rejection Error: EACCES: permission denied, open '/home/vagrant/.npm/_cacache/index-v5/d0/4d/0d779b188af55718b4171d26d01a41d0c46ab27bc176dc227543a131f462'

Unhandled rejection Error: EACCES: permission denied, open '/home/vagrant/.npm/_cacache/index-v5/d0/4d/0d779b188af55718b4171d26d01a41d0c46ab27bc176dc227543a131f462'

npm ERR! cb() never called!

npm ERR! This is an error with npm itself. Please report this error at:
npm ERR!     <https://npm.community>

npm ERR! A complete log of this run can be found in:
npm ERR!     /home/vagrant/.npm/_logs/2019-04-10T01_58_29_310Z-debug.log

# Project initialization finished!
# ========================

To get started:

cd vuejs-essential
npm run dev

Documentation can be found at https://vuejs-templates.github.io/webpack

解决:

Should we run 'npm install' for you after the project has been created? 的时候选择稍后手动运行,结束当前命令后自己再运行 yarn --no-bin-links

webpack-dev-server 命令未找到

vagrant@homestead:~/code/vuejs-essential$ npm run dev

> [email protected] dev /home/vagrant/code/vuejs-essential
> webpack-dev-server --inline --progress --config build/webpack.dev.conf.js

sh: 1: webpack-dev-server: not found
npm ERR! file sh
npm ERR! code ELIFECYCLE
npm ERR! errno ENOENT
npm ERR! syscall spawn
npm ERR! [email protected] dev: `webpack-dev-server --inline --progress --config build/webpack.dev.conf.js`
npm ERR! spawn ENOENT
npm ERR!
npm ERR! Failed at the [email protected] dev script.
npm ERR! This is probably not a problem with npm. There is likely additional logging output above.

npm ERR! A complete log of this run can be found in:
npm ERR!     /home/vagrant/.npm/_logs/2019-04-10T02_11_25_868Z-debug.log

搜索了下,参考 Bug with webpack-dev-server 2.10.0 - Unable to start webpack-dev-server, 执行 yarn add -D [email protected] --no-bin-links 安装后解决。