fullstack web projects in action
fullstack web projects in action
web 全栈项目实战
Angular 全栈
Angular + TypeScript + Nest.js + PostgreSQL + TypeORM
# PostgreSQL
$ psql
createdb transportation
psql // gets you into the psql command line
\c transportation
CREATE TABLE cars
(id SERIAL, make TEXT, model TEXT, miles INT);
INSERT into cars values
(DEFAULT, 'subaru', 'outback', 3420);
INSERT into cars values
(DEFAULT, 'honda', 'passport', 27);
INSERT into cars values
(DEFAULT, 'volvo', 'XC40', 33000);
select * from cars;
React
React + TypeScript + Next.js + MongoDB + Mongoose
https://mongoosejs.com/docs/index.html
Vue
Vue + TypeScript + Nuxt.js + MySQL + Sequelize
refs
https://www.sololearn.com/Play/fullstack/
https://www.runoob.com/postgresql/postgresql-tutorial.html
https://www.runoob.com/postgresql/mac-install-postgresql.html
https://github.com/postgres-cn/pgdoc-cn/releases
©xgqfrms 2012-2020
www.cnblogs.com 发布文章使用:只允许注册用户才可以访问!
本文首发于博客园,作者:xgqfrms,原文链接:https://www.cnblogs.com/xgqfrms/p/13677822.html
未经授权禁止转载,违者必究!