Custom Create React App | Best Practices in Typescript | React >16
React app has multiple versions now a days, based on the latest typescript implementation using React 16. Here is a code sample if it helps anyone to Kickstart their project or take "inspiration"
This is a simple app to get gists of user.
React app, Single Page, Gist User Data
download code in local via - https://github.com/jatinmarwah/React_Sample
Master - latest Stable
Develop - ongoing check in (might be unstable)
execute command on root folder
yarn run build:dev OR npm run build: dev
Start app with yarn start OR npm start;
GO TO:
"localhost:8080"
Test with any valid gist username
App Tested with user "paulirish"
Data validation
No extensive data validation is done, pagination is not supported(YET), max result received is 30
Basic validations and error handling is done, app level handling and boundaries can be extended
Caution
As un-authenticated api is being used, GIT limits 60 requests per hours. Use with Caution when testing multiple times (or use different IPs/machine)
Comments
Post a Comment