码迷,mamicode.com
首页 >  
搜索关键字:cnpm    ( 1254个结果
vue 项目如何使用animate.css
一 . 安装 在命令行中执行: 使用npm或者cnpm安装 npm install animate.css --save 或 cnpm install animate.css --save 使用yarn安装 yarn add animate.css 二. 引入 在main.js全局引入 import ...
分类:Web程序   时间:2020-12-19 12:10:47    阅读次数:3
快速搭建vue的开发环境
搭建vue的开发环境: https://cn.vuejs.org/v2/guide/installation.html 1、必须要安装nodejs 2、搭建vue的开发环境 ,安装vue的脚手架工具 官方命令行工具 npm install --global vue-cli / cnpm instal ...
分类:其他好文   时间:2020-12-18 12:37:03    阅读次数:2
前端js部署
1 执行命令 cnpm run build 2.2 提取dist静态资源 将静态资源放置后端static下 /static文件是django后端的部署文件夹 3 Nginx写入配置文件 写入etc/nginx/conf.d/django.conf server { listen 1594; serv ...
分类:Web程序   时间:2020-12-17 12:03:31    阅读次数:2
vue3安装ant
全局安装 -- 指令 cnpm i --save ant-design-vue@next -S main.js -- 引入 import { createApp } from "vue"; import App from "./App.vue"; import router from "./rout ...
分类:其他好文   时间:2020-12-10 10:55:34    阅读次数:2
npm重新安装node_modules方法
1. 安装rimraf : cnpm install rimraf -g 2. 执行: rimraf node_modules 删除文件荚 3. 清空缓存: npm cache clean --force 4. 重新安装淘宝镜像: npm install -g cnpm --registry=htt ...
分类:其他好文   时间:2020-12-05 11:06:43    阅读次数:8
Vue 安装及基本配置
vue安装及配置 1.安装node.js 查看是否安装:node -v 下载node.js要求版本在8.9以上 官网:https://nodejs.org/zh-cn/ 使用淘宝NPM镜像源下载比较快 命令:npm install -g cnpm --registry=https://registr ...
分类:其他好文   时间:2020-12-01 12:18:29    阅读次数:8
NPM配置淘宝镜像
临时使用 npm install --registry https://registry.npm.taobao.org 全局使用 npm config set registry https://registry.npm.taobao.org 查看全局配置 npm config get registr ...
分类:其他好文   时间:2020-11-26 15:14:40    阅读次数:6
下载脚手架vue.cli出现的问题
1、在下载脚手架之前我首先是进行了cnpm的安装:使用淘宝定制的cnpm命令行工具代替默认的npm npm install -g cnpm --registry=https://registry.npm.taobao.org 这样就可以使用cnpm命令来安装模块了,如: cnpm install【n ...
分类:其他好文   时间:2020-11-26 14:21:53    阅读次数:4
vue init
vue-cli 初始化项目 npm install -g cnpm --registry=https://registry.npm.taobao.org cnpm install -g vue-cli vue init webpack demo cd demo cnpm i npm run dev ...
分类:其他好文   时间:2020-11-20 12:21:03    阅读次数:25
docsite使用
docsite使用 环境搭建 (1.)安装Npm apt install npm # npm版本号 npm -v sudo npm install -g cnpm --registry=https://registry.npm.taobao.org --verbose # cnpm版本号 cnpm ...
分类:其他好文   时间:2020-11-16 13:31:32    阅读次数:5
1254条   上一页 1 ... 3 4 5 6 7 ... 126 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!