美文网首页
2018-02-26 vue学习

2018-02-26 vue学习

作者: 等花开_8e16 | 来源:发表于2018-02-27 16:17 被阅读0次

1.一个重要的事情值得注意,关注点分离不等于文件类型分离。在现代 UI 开发中,我们已经发现相比于把代码库分离成三个大的层次并将其相互交织起来,把它们划分为松散耦合的组件再将其组合起来更合理一些。在一个组件里,其模板、逻辑和样式是内部耦合的,并且把他们搭配在一起实际上使得组件更加内聚且更可维护。

2. npm 学习

What is npm?

anserw:npm consists of three distinct components:

the website ---The website is the primary way developers discover packages, set up profiles, and manage other aspects of their npm experience.

the registry---The registry is a large database of information about packages.

the Command Line Interface (CLI)---The CLI runs from a terminal. This is how most developers interact with npm.

How to Install npm & Manage npm Versions

npm is written in Node.js

中间管理node.js和npm版本的nvm那个是个什么鬼,看了半天没看懂,之后用到的话再查资料吧,进度太慢了

Working with package.json

 npm init  -y

"dependencies": These packages are required by your application in production.

"devDependencies": These packages are only needed for development and testing.

To add an entry to your package.json's dependencies:

npm install --save

To add an entry to your package.json's devDependencies:

npm install --save-dev

Managing dependency versions

npm uses Semantic Versioning(语义化版本统计-http://blog.csdn.net/vblittleboy/article/details/48523015), or, as we often refer to it, SemVer, to manage versions and ranges of versions of packages.

npm update [-g] [<pkg>...]

npm-update 不用根本看不懂英文文档系列,以后再深入研究吧,对自己完全无语

How to Uninstall Local Packages

To remove a package from your node_modules directory, use:

npm uninstall :

npm uninstall lodash

To remove it from the dependencies in package.json, you will need to use the save flag:

npm uninstall --save lodash

Note: if you installed the package as a "devDependency" (i.e. with --save-dev) then --save won't remove it from package.json. You have to use --save-dev to uninstall it.

Note: if you installed the package as a "devDependency" (i.e. with --save-dev) then --save won't remove it from package.json. You have to use --save-dev to uninstall it

To confirm that npm uninstall worked correctly

ls node_modules on Unix systems such as "OSX"

How to Install Global Packages

npm install -g

How to Update Global Packages

npm update -g

How to uninstall global packages

npm uninstall -g  <package>

To upgrade, run: npm install npm@latest -g

阅读英文文档大部分靠蒙!!!

3.单词积累

   Verify - 核实

   semantic - 语义的,语义学的

    aliases - 别名

4.mac os

   cd ~/ 进入根目录

   shift+g vi编辑模式下跳转到文件末尾

相关文章

  • 2018-02-26 vue学习

    1.一个重要的事情值得注意,关注点分离不等于文件类型分离。在现代 UI 开发中,我们已经发现相比于把代码库分离成三...

  • 复习计划

    复习计划 时间:2018-02-26

  • 点石成金?

    2018-02-26 星期一 阴 【早睡早起】 昨晚22:30,今早6:53起床。 【学习】1.学习《赖国全学说集...

  • two

    2018-02-26 晚2018-02-27 晚

  • 2018-02-26

    2018-02-26 180戴娴 简书作者 2018.02.26 20.18打开App (稻盛哲学学习会)打卡第4...

  • 手把手教你Vue从零撸一个迷你版MVVM框架

    这段时间 在工作之余的休息时间,学习了解Vue ,学习Vue的设计思想,通过Vue官网学习Vue的语法,通过Vue...

  • vue使用拖拽组件

    vue-draggable 学习和使用 组件实例 Vue.Draggable Vue.Draggable学习总结...

  • vue2 基础学习02 (Vue组件)

    vue2 基础学习02 (Vue组件) vue学习路径和建议----尤雨溪 vue官网 1.Vue组件 参考官方文...

  • Vue学习的路径

    接下来我将正式学习Vue,根据Vue作者所给的学习路径进行学习。每天做好学习笔记。 ​ vue学习路径和建议-...

  • web worker

    title: workerdate: 2018-02-26 17:08:22tags: web worker 运行...

网友评论

      本文标题:2018-02-26 vue学习

      本文链接:https://www.haomeiwen.com/subject/rzmyxftx.html