https://github.com/csbun/weex-challenger
Try to challenge weex
https://github.com/csbun/weex-challenger
vue weex
Last synced: about 2 months ago
JSON representation
Try to challenge weex
- Host: GitHub
- URL: https://github.com/csbun/weex-challenger
- Owner: csbun
- License: mit
- Created: 2017-06-15T11:49:30.000Z (almost 8 years ago)
- Default Branch: master
- Last Pushed: 2020-09-03T01:56:45.000Z (over 4 years ago)
- Last Synced: 2025-01-07T23:22:12.553Z (4 months ago)
- Topics: vue, weex
- Language: JavaScript
- Size: 30.3 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# weex-challenger
Try to challenge weex
## getting start
```bash
npm install
```## file structure
* `src/*`: all source code
* `app.js`: entrance of the Weex page
* `build/*`: some build scripts
* `dist/*`: where places generated code
* `assets/*`: some assets for Web preview
* `index.html`: a page with Web preview and qrcode of Weex js bundle
* `weex.html`: Web render
* `.babelrc`: babel config (preset-2015 by default)
* `.eslintrc`: eslint config (standard by default)## npm scripts
```bash
# build both two js bundles for Weex and Web
npm run build# build the two js bundles and watch file changes
npm run dev# start a Web server at 8080 port
npm run serve# start weex-devtool for debugging with native
npm run debug
```## notes
You can config more babel, ESLint and PostCSS plugins in `webpack.config.js`.