
npm
东宇科技
2005年接触编程。现在维护的项目有2个,一个是JavaSpringBootSeed.一个是PHPtp5。
展开
-
React 免费教程 (三)拆分组件和传值
增加一个新的ListItem.js import React, { Component } from 'react'; class ListItem extends Component { render() { return ( <li>aaa</li> ); } } export default ListItem; 在App.js里引用 <Fragment>原创 2020-07-24 18:01:25 · 139 阅读 · 0 评论 -
React 免费教程 (一)安装
https://reactjs.org npm ERR! code UNABLE_TO_VERIFY_LEAF_SIGNATURE npm ERR! errno UNABLE_TO_VERIFY_LEAF_SIGNATURE 关掉strict-ssl即可, 如下:npm config set strict-ssl false 用完之后恢复: npm config set strict-ssl true 另外从淘宝镜像还原为官方镜像用如下方法 npm config set registry...原创 2020-07-24 15:29:48 · 286 阅读 · 0 评论