Project Name | Stars | Downloads | Repos Using This | Packages Using This | Most Recent Commit | Total Releases | Latest Release | Open Issues | License | Language |
---|---|---|---|---|---|---|---|---|---|---|
33 Js Concepts | 58,202 | 10 hours ago | 74 | mit | JavaScript | |||||
📜 33 JavaScript concepts every developer should know. | ||||||||||
Js Stack From Scratch | 19,396 | 2 | a year ago | 1 | January 19, 2017 | 48 | mit | JavaScript | ||
🛠️⚡ Step-by-step tutorial to build a modern JavaScript stack. | ||||||||||
Under The Hood Reactjs | 4,768 | 2 years ago | 5 | mit | JavaScript | |||||
Entire React code base explanation by visual block schemes (Stack version) | ||||||||||
Project_mern_memories | 4,705 | 19 days ago | 110 | JavaScript | ||||||
This is a code repository for the corresponding video tutorial. Using React, Node.js, Express & MongoDB you'll learn how to build a Full Stack MERN Application - from start to finish. The App is called "Memories" and it is a simple social media app that allows users to post interesting events that happened in their lives. | ||||||||||
Notistack | 3,567 | 253 | 554 | 8 days ago | 110 | March 08, 2023 | 35 | other | TypeScript | |
Highly customizable notification snackbars (toasts) that can be stacked on top of each other | ||||||||||
Awesome Stacks | 3,118 | 2 months ago | 11 | cc0-1.0 | JavaScript | |||||
A curated list of tech stacks for building different applications & features | ||||||||||
Notion Clone | 1,779 | 2 years ago | 5 | JavaScript | ||||||
Edit Notes like in Notion.so. Full-Stack App using React/Express. | ||||||||||
Starter | 1,598 | 13 days ago | 25 | other | TypeScript | |||||
Opinionated SaaS quick-start with pre-built user account and organization system for full-stack application development in React, Node.js, GraphQL and PostgreSQL. Powered by PostGraphile, TypeScript, Apollo Client, Graphile Worker, Graphile Migrate, GraphQL Code Generator, Ant Design and Next.js | ||||||||||
Fulcro | 1,489 | 13 | 4 days ago | 205 | April 30, 2019 | 1 | mit | Clojure | ||
A library for development of single-page full-stack web applications in clj/cljs | ||||||||||
Bank | 1,235 | a year ago | mit | |||||||
🏦 Full Stack Web Application similar to financial software that is used in banking institutions | React.js and Node.js |
该项目是对 React 技术栈以及前端工程化的相关实践。
愿景:沉淀出一套针对中台系统的开发相对完善的使用方案。
效果展示,建议本地打开。
本地运行
yarn install || npm install
yarn start || npm start
打包
yarn build || npm run build
发布
yarn deploy || npm run deploy
├── build.js 项目打包后的文件
├── config webpack配置文件
│ ├──...
│ ├──webpack.config.dev.js 开发环境配置(启动速度优化)
│ ├──webpack.config.prod.js 生产环境配置(打包体积优化)
├── node_modules node模块目录
├── public
│ └──index.html
├── scripts
│ ├── build.js 打包项目文件
│ ├── start.js 启动项目文件
│ └── test.js 测试项目文件
├── src
│ ├── client
│ │ ├── store redux中的store
│ │ ├── devTools.js 开发者工具
│ ├── common 核心目录
│ │ ├── api 请求api层
│ │ ├── actions redux中的action
│ │ ├── components 通用功能组件
│ │ ├── container 通用样式组件
│ │ ├── images
│ │ ├── pages 页面模块
│ │ ├── reducers redux中的reducer
│ │ ├── utils 工具类
│ │ │ ├── index.js
│ │ │ ├── config.js 通用配置
│ │ │ ├── menu.js 菜单配置
│ │ │ └── ajax.js ajax模块
│ │ └── routes.js 前端路由
│ └── server 服务端目录(日后用到)
│ └── controller
├── .gitignore
├── package.json
├── README.md
└── yarn.lock