ts react vite_or_webpack
1.0.0
มีตัวอย่างการใช้งาน webpack
นี่เป็นการเริ่มต้นแบบง่ายๆ (ผู้ดูแลระบบ) พร้อมด้วย typescript, react และ vite
ดูอย่างรวดเร็ว:
สำหรับแหบแห้ง
$ npm run prepare
หากคุณไม่ต้องการรีจิสทรี taobao คุณสามารถเปลี่ยนได้ใน
.npmrc
$ npm i
$ npm test
$ npm run dev
$ npm run build:(qa/prod)
import React from 'react'
import { observer } from 'mobx-react'
import { Button } from 'antd'
import history from '@shared/App/ht'
function Test ( ) {
function gotoHome ( ) {
history . push ( '/' )
}
return (
< Button type = "primary" onClick = { gotoHome } >
go to page index directly
</ Button >
)
}
export default observer ( Test )
ตัวอย่างสด
ESLint
สไตล์ลินท์
Prettier - ตัวจัดรูปแบบโค้ด
#! /bin/bash
TIMESPAN= $( date ' +%s ' )
DEPLOYNAME=ts-react.qa. ${TIMESPAN}
DEPLOYFILES= ${DEPLOYNAME} .tar.gz
SERVER=0.0.0.0
# make compression
cd dist/qa
tar -zcvf ${DEPLOYFILES} ./ *
# upload
scp -P 22 -o StrictHostKeyChecking=no ${DEPLOYFILES} node@ ${SERVER} :/home/pages/ts-react/tarfiles
# make decompression
ssh -p 22 -o StrictHostKeyChecking=no node@ ${SERVER} tar xzf /home/pages/ts-react/tarfiles/ ${DEPLOYFILES} -C /home/pages/ts-react
if [ $? -ne 0 ] ; then
echo " success "
else
echo " fail "
fi
server {
listen 9993 ;
server_name localhost:9993;
location / {
root ~ /Documents/react/ts-react/dist/qa/;
index index.html;
}
}
เรือกลไฟ-react-redux-ts