ICode9

精准搜索请尝试: 精确搜索
  • electron+vue 环境搭建2022-07-15 16:01:10

    一、环境介绍及会遇到的困难   electron是一款比较流行的桌面可视化开发工具,通过html+js+css实现桌面应用,优点就是多平台开发以及UI好看。缺点是外网npm仓库速度慢。话不多说开始我的教程,和可能遇到的坑的解决办法。   二、全局配置npm以及需要的包 安装的过程要是出现报错可以

  • npm源地址设置2022-07-12 11:03:02

    查看npm源: npm get registry 国内设置淘宝源: #官方:http://www.npmjs.org npm config set registry http://registry.npm.taobao.org 如果不想全局设置,也可安装时临时指定: npm install --registry=https://registry.npm.taobao.org

  • 使用Python+Appium+夜神模拟器,并连接uiautomatorviewer2022-06-30 19:05:05

    本文不介绍安装步骤,实在是太多博文了 一、安装 Python:3.8 Appium:1.22.3 夜神模拟器 node JDK1.8 SDK 二、成功连接模拟器 PytCharm代码如下: # coding=utf-8 from appium import webdriver from appium.webdriver.common.appiumby import AppiumBy desired_caps = {

  • 【随笔】淘宝 npm 域名更新2022-06-28 15:00:30

    ✨淘宝 npm 域名更新 今天偶然间访问homebrew阿里云镜像站时发现右上角一则小广告 http://npm.taobao.org和 http://registry.npm.taobao.org 将在 2022.06.30 号正式下线和停止 DNS 解析。 新域名为 npmmirror.com, 相关服务域名切换规则请参考: http://npm.taobao.org => http:/

  • npm 更换 淘宝镜像2022-06-27 00:03:06

    方法一: 安装 cnpm ===>  npm install -g cnpm --registry=https://registry.npm.taobao.org  检测方法:   cnpm  -v     方法二: 安装 npm ===> npm config set registry https://registry.npm.taobao.org 检测方法:   npm config get registry

  • vue-cli项目详细搭建过程2022-06-25 13:01:59

    https://www.jianshu.com/p/8d5aeb79d7ad   一、安装 Node.js 10(选择自己需要的版本) 运行 node -v查看版本,如果不是 10,请先卸载当前版本去 Node.js 官网下载10.12.0版的安装包,一路点击下一步,注意安装目录可以改,一定不要在路径中出现中文和空格。 注意重装 Node.js 后,你以前用 n

  • nrm的介绍使用方法2022-06-11 23:34:28

    nrm的介绍使用方法 NRM(npm registry manger)是npm的镜像源管理工具,有时候国外资源太慢,使用这个就可以快速在npm源之间进行切换 手动切换方法 npm config set registry https://registry.npm.taobao.org 安装 nrm 在命令行执行命令,npm install -g nrm ,全局安装nrm 使用 nrm 执

  • nrm使用2022-06-10 20:11:54

    nrm是npm的镜像源管理工具 nrm list 查看当前已添加的镜像源列表 * 代表目前正在使用的镜像源 nrm current 查看当前使用的镜像源 * 不显示, current显示不出信息的,参考 https://www.cnblogs.com/xiaoxiaopao/p/16331277.html 修复 nrm use 切换镜像源, 如:nrm use taobao nrm add

  • NPM镜像代理设置2022-05-31 18:05:30

    用户目录C:\Users\xxx下建立.npmrc文件,内容如下: registry="https://registry.npm.taobao.org" ELECTRON_MIRROR="https://npm.taobao.org/mirrors/electron/" SASS_BINARY_SITE="https://npm.taobao.org/mirrors/node-sass"

  • git安装2022-05-15 21:01:01

    国内git镜像网站:https://npm.taobao.org/mirrors/git-for-windows/    底部是最新的版本     windows64位:下载这个    

  • npm设置镜像地址2022-05-10 16:03:05

    设置淘宝源 npm config set registry https://registry.npm.taobao.org 查看源设置 npm config get registry 为本次安装设置淘宝源 npm install yarn --registry=https://registry.npm.taobao.org

  • ClickHouse VS SQLServer数据库 后续(2)2022-05-08 13:33:14

    上文发了之后,有人说要和SSAS对比,还有人说要在SQLServer建一个列数据库来对比 SQL2012 之后开始有列存储, 但要在2016SP1之后才在Express版开放, 之前都是在Enterprise版才有, 我在win10安装了最新SQLServer 2019 Express版, 把订单日期字段加上列存储索引 --建立列索引用时42秒

  • yarn2022-04-08 23:02:22

    安装yarn npm install -g yarn yarn --version yarn设置淘宝源 yarn config set registry https://registry.npm.taobao.org -g yarn config set sass_binary_site http://cdn.npm.taobao.org/dist/node-sass -g

  • Redis学习 --基本命令篇2022-04-04 17:34:00

    在查看Redis所具备的命令时,可以通过在官网:(https://redis.io/commands/)查看redis所具备的命令大全   一:通用命令 常见的通用命令有:KEYS、DEL、EXISTS、EXPIRE、TTL 命令 描述 KEYS 查看符合模板的所有key,比较占用内存,不建议在正式环境使用 DEL 删除一个指定的key EXISTS

  • npm使用国内镜像2022-04-02 00:34:14

    一.通过命令配置1. 命令 npm config set registry https://registry.npm.taobao.org 2. 验证命令 npm config get registry 如果返回https://registry.npm.taobao.org,说明镜像配置成功。   二、通过使用cnpm安装1. 安装cnpm npm install -g cnpm --registry=https://registr

  • npm install时网络报错的问题2022-03-26 03:00:55

      如果现在是taobao的镜像 npm config set registry http://registry.cnpmjs.org/如果不是淘宝的镜像 npm config set registry https://registry.npm.taobao.org   先在CMD中运行这个 npm config set registry http://registry.cnpmjs.org/ 然后在CMD中运行这个 npm install -

  • 速卖通AE平台+聚石塔+奇门2022-02-25 15:32:03

    由于之前接触过关于速卖通AE相关的业务,踩过很多聚石塔和奇门的坑,官方文档当时不是很清晰(不知现在怎么样),现在记录下如何配置奇门具体细节。 登陆淘宝开放平台(搜索资料得知,速卖通开放平台并入了淘宝开放平台)登陆后进去你会看到应用管理,当时我拿到这账号时应用已经建好了。(https

  • python学习记录(一)基本语法查缺补漏2022-02-20 10:35:45

    cr:https://www.runoob.com/python3/python3-basic-syntax.html 仅作为自己学习记录使用 多行语句 Python 通常是一行写完一条语句,但如果语句很长,我们可以使用反斜杠 \ 来实现多行语句,例如: total = item_one + \ item_two + \ item_three 字符串 字符串可以

  • API接口名称2022-02-10 09:32:21

    小结: 1)接口名称做为请求参数,不在请求路径中体现。   开放平台-文档中心 https://open.taobao.com/api.htm?docId=21349&docType=2 公共参数 请求地址: 环境 HTTP地址 HTTPS地址 正式环境 http://gw.api.taobao.com/router/rest https://eco.taobao.com/router

  • An unexpected error occurred: “http://registry.npm.taobao.org/webapck: Not found“.2022-01-11 16:58:52

    问题描述: yarn安装webpack webpack-cli 依赖包报错 An unexpected error occurred: "http://registry.npm.taobao.org/webapck: Not found". 原因说明 这种情况一般都是网络不好导致的下载依赖包请求超时报错,所以需要更改下载地址。 解决步骤: 1.请求地址设置成淘宝源 yarn con

  • vim安装coc插件自动补全2022-01-07 01:02:31

    第一步,安和装nodejs和yarn curl -sL install-node.now.sh | bash curl --compressed -o- -L https://yarnpkg.com/install.sh | bash  install-node.now.sh是一个网站,curl打开他的时候会下载一个sh文件,这两个名字可能需要sudo命令才能执行,并且| 后面的bash也要加sudo。 第二

  • node-sass 安装失败解决方法2021-12-30 18:03:56

    方法1.直接通过淘宝镜像下载node-sass模块npm i node-sass --sass_binary_site=https://npm.taobao.org/mirrors/node-sass/   方法2.在项目内添加一个 .npmrc 文件: sass_binary_site=https://npm.taobao.org/mirrors/node-sass/ phantomjs_cdnurl=https://npm.taobao.org/mir

  • npm的源设置2021-12-24 14:02:59

    1.在命令行里指定源,改变全局的注册 [root@devops ~]# npm config set registry https://registry.npm.taobao.org 2.修改~/.npmrc 配置文件 [root@devops ~]# vim ~/.npmrc registry=https://registry.npm.taobao.org [root@devops ~]# npm config get registry https://regis

  • 淘宝IP查询2021-12-22 16:01:20

     ip: https://ip.taobao.com/outGetIpInfo  参数  

  • yarn下载依赖慢的解决方法2021-12-13 22:34:47

     首先设置npm或者yarn镜像为淘宝镜像 详情: 淘宝 NPM 镜像 npm config set registry https://registry.npm.taobao.org OR yarn config set registry https://registry.npm.taobao.org 在项目的根目录添加.npmrc 或者 .yarnrc 把镜像源设置淘宝镜像,node-sass设置淘宝的路径 reg

专注分享技术,共同学习,共同进步。侵权联系[81616952@qq.com]

Copyright (C)ICode9.com, All Rights Reserved.

ICode9版权所有