如何在windows下搭建react开发环境上,实现网站的react版本
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了如何在windows下搭建react开发环境上,实现网站的react版本相关的知识,希望对你有一定的参考价值。
参考技术A 何搭建 nodereact 发环境何搭建 nodereact 发环境
var path = require("path");
var webpack = require('webpack');
module.exports =
entry: app: ['./app/main.jsx'] ,
output:
path: path.resolve(__dirname, "./build"),
publicPath: "",
filename: "bundle.js"
,
resolve:
extensions: ['','.js','.jsx']
,
module:
loaders: [
test:/\.jsx$/, loaders:['jsx?harmony']
],
//使用ES6才需要添加loaders
loaders:[
test: /\.jsx?$/,
loader: 'babel',
include: ROOT_PATH,
query:
//添加两presents 使用两种presets处理js或者jsx文件
presets: ['es2015', 'react']
]
,
devServer:
historyApiFallback: true,
hot: true,
inline: true,
progress: true
,
plugins: [
new webpack.DefinePlugin(
'process.env.NODE.ENV':"development"
),
new webpack.HotModuleReplacementPlugin()
]
;
在Mac上搭建React Native开发环境
概述
前面我们介绍过在window环境下开发React Native项目,今天说说怎么在mac上搭建一个RN的开发环境。
配置mac开发环境
基本环境安装
1.先安装Homebrew:用于安装NodeJS和其他工具。
注:Homebrew详解,对这个比较了解的略过,我也是用mac没多久,这里给小白普及下。
Homebrew全称Homebrew is the easiest and most flexible way to install the UNIX tools Apple didn’t include with OS X。是一个包管理器,用于在Mac上安装一些OS X没有的UNIX工具(比如著名的wget),Homebrew将这些工具统统安装到了 /usr/local/Cellar 目录中,并在 /usr/local/bin 中创建符号链接。
安装Homebrew:
/usr/bin/ruby -e "
以上是关于如何在windows下搭建react开发环境上,实现网站的react版本的主要内容,如果未能解决你的问题,请参考以下文章
在window的环境下搭建react-native的Android开发环境(转)
Android React Native 开发环境搭建---windows下