为了账号安全,请及时绑定邮箱和手机立即绑定

react 脚手架的使用

标签:
JavaScript React

安装脚手架工具

npm install install -g create-react-app

使用

执行如下命令

create-react-app react-hello
cd react-hello
npm start

效果如下
图片描述

脚手架说明

index.html

图片描述

自动打开浏览器与端口号

安装 cross-env

npm install cross-env --save-dev

修改package.json

"start": "cross-env PORT=4001 BROWSER=none react-scripts start"

也可以指定浏览器

"start": "cross-env PORT=4001 BROWSER=chrome react-scripts start"

简单添加一个组件

要点

  1. 后缀可以是.js或者.jsx
  2. 组件文件名为index可以缩短引入时的路径
  3. 单纯的写css可以文件名添加一个module, 然后可以用一个对象接收

代码

项目结构
图片描述
App.js

import React,{Component} from 'react'

import Index from './components/Hello'

class App extends Component{
  render() {
    return (
        <div>
          <Index />
        </div>
    )
  }
}

export default App;

Hello.jsx

import React,{Component} from 'react'

import Hello from './index.module.css'

export default class Index extends Component{
    render() {
        return (
            <div className={Hello.title}>
                hello react 02
            </div>
        )
    }
}

Hello.css

.title{
    color: blue;
}

sass

npm install node-sass@4.14.1 --save-dev

具体node与node-sass版本对应关系可查看
www.npmjs.com/package/node-sass

直接引用即可

点击查看更多内容
TA 点赞

若觉得本文不错,就分享一下吧!

评论

作者其他优质文章

正在加载中
  • 推荐
  • 评论
  • 收藏
  • 共同学习,写下你的评论
感谢您的支持,我会继续努力的~
扫码打赏,你说多少就多少
赞赏金额会直接到老师账户
支付方式
打开微信扫一扫,即可进行扫码打赏哦
今天注册有机会得

100积分直接送

付费专栏免费学

大额优惠券免费领

立即参与 放弃机会
意见反馈 帮助中心 APP下载
官方微信

举报

0/150
提交
取消