Project Name | Stars | Downloads | Repos Using This | Packages Using This | Most Recent Commit | Total Releases | Latest Release | Open Issues | License | Language |
---|---|---|---|---|---|---|---|---|---|---|
Parse Server | 20,494 | 1,140 | 112 | 9 days ago | 337 | November 19, 2023 | 473 | apache-2.0 | JavaScript | |
Parse Server for Node.js / Express | ||||||||||
Payload | 15,456 | 5 | 116 | 7 hours ago | 451 | December 01, 2023 | 132 | mit | TypeScript | |
The best way to build a modern backend + admin UI. No black magic, all TypeScript, and fully open-source, Payload is both an app framework and a headless CMS. | ||||||||||
N Blog | 15,244 | 7 months ago | 25 | JavaScript | ||||||
《一起学 Node.js》 | ||||||||||
Mean | 12,150 | 10 days ago | February 02, 2017 | 58 | TypeScript | |||||
The MEAN stack uses Mongo, Express, Angular(6) and Node for simple and scalable fullstack js applications | ||||||||||
Node Elm | 11,215 | 2 years ago | 62 | gpl-2.0 | JavaScript | |||||
基于 node.js + Mongodb 构建的后台系统 | ||||||||||
Habitica | 10,797 | a day ago | 261 | other | JavaScript | |||||
A habit tracker app which treats your goals like a Role Playing Game. | ||||||||||
Winds | 8,486 | 2 years ago | bsd-3-clause | JavaScript | ||||||
A Beautiful Open Source RSS & Podcast App Powered by Getstream.io | ||||||||||
Node Express Boilerplate | 6,012 | 2 | a month ago | 3 | March 30, 2021 | 88 | mit | JavaScript | ||
A boilerplate for building production-ready RESTful APIs using Node.js, Express, and Mongoose | ||||||||||
Mongo Express | 5,202 | 193 | 20 | 7 hours ago | 170 | October 02, 2023 | 146 | mit | JavaScript | |
Web-based MongoDB admin interface, written with Node.js and express | ||||||||||
Node Express Mongoose Demo | 5,087 | 3 | a month ago | 1 | January 18, 2016 | 3 | mit | JavaScript | ||
A simple demo app using node and mongodb for beginners (with docker) |
A shop developed with Vue2 + Vue-router + Axios + Vuex + Node + Express + MongoDB + Webpack http://vue2shop.songfens.club/
注意:先启动MongoDB
# cd server
# npm i (商城服务端依赖安装)
# node bin/www (启动服务端)
# cd .. (切到项目根目录)
# npm i (Vue项目依赖安装)
# npm start (Vue商城启动)
## Build Setup
``` bash
# project init(项目初始化)
vue init webpack vue-shop
# install dependencies(安装依赖)
npm install
# serve with hot reload at localhost:8080(试运行)
npm run dev
# build for production with minification(项目构建)
npm run build
# build for production and view the bundle analyzer report(打包分析报告)
npm run build --report
For a detailed explanation on how things work, check out the guide and docs for vue-loader. more info, contact with [email protected]
Vue2商城需求分析及框架搭建,商品列表实现
商品列表模块实现的两种方式
商城后台框架搭建与商品列表滚动分页
业务功能开发(一)(分页查询及登录拦截)
业务功能开发(二)(购物车)
业务功能开发(三)(购物车及收货详情)
业务功能开发(四)(订单处理)
Vue项目打包优化及部署上线+课程总结