Skip to content

无需node环境在线编译运行react多文件代码,包含插件机制,支持简易定制化。

Notifications You must be signed in to change notification settings

jeryqwq/react-browser-loader

Folders and files

NameName
Last commit message
Last commit date

Latest commit

b881a9f · Mar 6, 2023

History

14 Commits
Apr 13, 2022
Apr 13, 2022
Apr 7, 2022
Apr 13, 2022
Apr 7, 2022
Mar 6, 2023
Apr 7, 2022
Apr 7, 2022
Apr 13, 2022
Apr 16, 2022
Apr 7, 2022
Apr 16, 2022
Apr 11, 2022

Repository files navigation

react-browser-loader

在前端浏览器环境内编译react多文件代码,包含插件机制,可基于此定制开发专属你的前端在线编码平台或者前端物料平台

NPM version NPM downloads

Vue


React


Demo

地址: https://codesandbox.io/s/react-browser-loader-fxil59?file=/src/App.js

import loader from 'react-browser-loader'
import React from 'react';
import ReactDOM from 'react-dom';
const config = {
  el: document.getElementById('app') as HTMLElement,
  React: React,
  ReactDOM: ReactDOM,
  entry: '/app.js',
  addStyle: (str) => {
    console.log(`you should add style, content:${str}`)
  },
  files: {
      '/demo.jpg': `https://upload.wikimedia.org/wikipedia/commons/a/a7/React-icon.svg`,
      '/style.scss': `div{
        h1{
          color: red
        }
      }`,
      '/a/a.jsx': `
      export default function (props) {
        return <div> render a/a/.jsx</div>
      }
        `,
        '/a/b.jsx': `
        import B from './a.jsx';
        export default function (props) {
          return <div> render a/b/.jsx
          <br />
          Child: <B />
          </div>
        }
          `,
      '/app.js': `
        import CompA from './a.js';
        import  {useState} from 'react';
        import demo from './demo.jpg';
        import Ab from '/a/b.jsx';
        import './style.scss'
        const a = <div style={{color: 'red'}}>456</div>
        export const b = 3;
        export default function (props) {
          console.log(props, '----')
          const [count, setCount] = useState(0)
          return <div>
          <h1 >Count: {count}</h1>
          <img src={demo} style={{width: 200}}/>
          <h1 style={{color: 'red', cursor: 'pointer'}} onClick={() => setCount(count + 1)}>这是appjs组件 点我++</h1>
          <CompA />
          <Ab />
          </div>
        }
      `,
      '/a.js': `
        import  {useState} from 'react';
        import CompA from './CompA.jsx'
        export default function () {
          const [count, setCount] = useState(0)
          return <div  onClick={() =>setCount(count + 1)}>a.js CompA counter: {count}
          <CompA a='123'/>
          </div>
        }
      `,
    '/index.jsx': `
      import CompA from './CompA.jsx';
      export default function () {
        return (
          <div>
            <h1> Render React Mode </h1>
          </div>
        )
      }
    `,
    '/CompA.jsx': `
    export default function (props) {
      console.log(props, '================================')
      return (
        <div>
          <h1> ./CompA.jsx </h1>
        </div>
      )
    }
    `
  },
  parser: {
    moduleParser (path, config) { // 处理非编译情况下的代码, 即除去js, ts, jsx, tsx之外的
      if(path.endsWith('.jpg')) {
        return config.files[path]
      }
    }
  },
  module: {
    scss: (path, source) => {
      console.log(path, source)
    },
    stylus: () => {

    }
  }
}
const App = loader(config)
ReactDOM.render(React.createElement(App.default,  {a: 1}), config.el)

About

无需node环境在线编译运行react多文件代码,包含插件机制,支持简易定制化。

Topics

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published