Project Name | Stars | Downloads | Repos Using This | Packages Using This | Most Recent Commit | Total Releases | Latest Release | Open Issues | License | Language |
---|---|---|---|---|---|---|---|---|---|---|
30 Days Of Javascript | 34,647 | a day ago | 1 | January 25, 2022 | 228 | JavaScript | ||||
30 days of JavaScript programming challenge is a step-by-step guide to learn JavaScript programming language in 30 days. This challenge may take more than 100 days, please just follow your own pace. | ||||||||||
React Boilerplate | 29,049 | 2 | 1 | 7 days ago | 1 | May 11, 2014 | 116 | mit | JavaScript | |
:fire: A highly scalable, offline-first foundation with the best developer experience and a focus on performance and best practices. | ||||||||||
Reactjs Interview Questions | 28,332 | 3 days ago | 6 | JavaScript | ||||||
List of top 500 ReactJS Interview Questions & Answers....Coding exercise questions are coming soon!! | ||||||||||
React Redux | 22,697 | 140,108 | 15,483 | 8 days ago | 121 | September 23, 2022 | 19 | mit | TypeScript | |
Official React bindings for Redux | ||||||||||
React Redux Links | 21,729 | 7 months ago | 31 | |||||||
Curated tutorial and resource links I've collected on React, Redux, ES6, and more | ||||||||||
Normalizr | 20,984 | 3,388 | 592 | a year ago | 43 | March 19, 2022 | 22 | mit | JavaScript | |
Normalizes nested JSON according to a schema | ||||||||||
30 Days Of React | 19,971 | 3 days ago | 157 | JavaScript | ||||||
30 Days of React challenge is a step by step guide to learn React in 30 days. It requires HTML, CSS, and JavaScript knowledge. You should be comfortable with JavaScript before you start to React. If you are not comfortable with JavaScript check out 30DaysOfJavaScript. This is a continuation of 30 Days Of JS. This challenge may take more than 100 days, follow your own pace. | ||||||||||
Responsively App | 19,464 | 20 hours ago | 140 | agpl-3.0 | JavaScript | |||||
A modified web browser that helps in responsive web development. A web developer's must have dev-tool. | ||||||||||
Js Stack From Scratch | 19,396 | 5 months ago | 1 | January 19, 2017 | 48 | mit | JavaScript | |||
🛠️⚡ Step-by-step tutorial to build a modern JavaScript stack. | ||||||||||
React Developer Roadmap | 17,849 | 2 months ago | 35 | other | JavaScript | |||||
Roadmap to becoming a React developer |
node10.15.3 + [email protected] + [email protected] + [email protected] + [email protected] + [email protected] + [email protected] + [email protected]
QQ159697743
git clone --depth 1 https://github.com/duxianwei520/react.git
cd react ()
npm install ()
npm start ()
npm run build ()
npm run testing ()
json
{
data: {
totalCount: 100,
currentPage: 1,
pageSize: 10,
'list': [
],
},
msg: '',
status: 1,
}
configsajax.jsstatus1 status0 status-1 msg npm run mock
reactnodejsexpress
https://github.com/duxianwei520/express
nodejs
https://github.com/duxianwei520/node
3api
Issues PR
import axios from 'axios'
const axiosHandle = axios.CancelToken.source()
login(){
this.props.dispatch(fetchLogin(values, (res) => {},(error)=>{},axiosHandle)
setTimeout(() => {
axiosHandle.cancel('')
}, 3000)
}
reactreactQQ159697743