├── README.md ├── angular-16-client ├── .editorconfig ├── .gitignore ├── .vscode │ ├── extensions.json │ ├── launch.json │ └── tasks.json ├── README.md ├── angular-16-crud-example.png ├── angular.json ├── package-lock.json ├── package.json ├── src │ ├── app │ │ ├── app-routing.module.ts │ │ ├── app.component.css │ │ ├── app.component.html │ │ ├── app.component.spec.ts │ │ ├── app.component.ts │ │ ├── app.module.ts │ │ ├── components │ │ │ ├── add-tutorial │ │ │ │ ├── add-tutorial.component.css │ │ │ │ ├── add-tutorial.component.html │ │ │ │ ├── add-tutorial.component.spec.ts │ │ │ │ └── add-tutorial.component.ts │ │ │ ├── tutorial-details │ │ │ │ ├── tutorial-details.component.css │ │ │ │ ├── tutorial-details.component.html │ │ │ │ ├── tutorial-details.component.spec.ts │ │ │ │ └── tutorial-details.component.ts │ │ │ └── tutorials-list │ │ │ │ ├── tutorials-list.component.css │ │ │ │ ├── tutorials-list.component.html │ │ │ │ ├── tutorials-list.component.spec.ts │ │ │ │ └── tutorials-list.component.ts │ │ ├── models │ │ │ ├── tutorial.model.spec.ts │ │ │ └── tutorial.model.ts │ │ └── services │ │ │ ├── tutorial.service.spec.ts │ │ │ └── tutorial.service.ts │ ├── assets │ │ └── .gitkeep │ ├── favicon.ico │ ├── index.html │ ├── main.ts │ └── styles.css ├── tsconfig.app.json ├── tsconfig.json └── tsconfig.spec.json ├── angular-node-js-project-example.png ├── node-express-mongodb-server ├── .gitignore ├── README.md ├── app │ ├── config │ │ └── db.config.js │ ├── controllers │ │ └── tutorial.controller.js │ ├── models │ │ ├── index.js │ │ └── tutorial.model.js │ └── routes │ │ └── turorial.routes.js ├── package.json └── server.js ├── node-express-mysql-server ├── .gitignore ├── README.md ├── app │ ├── config │ │ └── db.config.js │ ├── controllers │ │ └── tutorial.controller.js │ ├── models │ │ ├── index.js │ │ └── tutorial.model.js │ └── routes │ │ └── turorial.routes.js ├── package.json └── server.js └── node-express-postgresql-server ├── .gitignore ├── README.md ├── app ├── config │ └── db.config.js ├── controllers │ └── tutorial.controller.js ├── models │ ├── index.js │ └── tutorial.model.js └── routes │ └── turorial.routes.js ├── package.json └── server.js /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bezkoder/angular-16-node-project/HEAD/README.md -------------------------------------------------------------------------------- /angular-16-client/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bezkoder/angular-16-node-project/HEAD/angular-16-client/.editorconfig -------------------------------------------------------------------------------- /angular-16-client/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bezkoder/angular-16-node-project/HEAD/angular-16-client/.gitignore -------------------------------------------------------------------------------- /angular-16-client/.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bezkoder/angular-16-node-project/HEAD/angular-16-client/.vscode/extensions.json -------------------------------------------------------------------------------- /angular-16-client/.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bezkoder/angular-16-node-project/HEAD/angular-16-client/.vscode/launch.json -------------------------------------------------------------------------------- /angular-16-client/.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bezkoder/angular-16-node-project/HEAD/angular-16-client/.vscode/tasks.json -------------------------------------------------------------------------------- /angular-16-client/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bezkoder/angular-16-node-project/HEAD/angular-16-client/README.md -------------------------------------------------------------------------------- /angular-16-client/angular-16-crud-example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bezkoder/angular-16-node-project/HEAD/angular-16-client/angular-16-crud-example.png -------------------------------------------------------------------------------- /angular-16-client/angular.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bezkoder/angular-16-node-project/HEAD/angular-16-client/angular.json -------------------------------------------------------------------------------- /angular-16-client/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bezkoder/angular-16-node-project/HEAD/angular-16-client/package-lock.json -------------------------------------------------------------------------------- /angular-16-client/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bezkoder/angular-16-node-project/HEAD/angular-16-client/package.json -------------------------------------------------------------------------------- /angular-16-client/src/app/app-routing.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bezkoder/angular-16-node-project/HEAD/angular-16-client/src/app/app-routing.module.ts -------------------------------------------------------------------------------- /angular-16-client/src/app/app.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /angular-16-client/src/app/app.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bezkoder/angular-16-node-project/HEAD/angular-16-client/src/app/app.component.html -------------------------------------------------------------------------------- /angular-16-client/src/app/app.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bezkoder/angular-16-node-project/HEAD/angular-16-client/src/app/app.component.spec.ts -------------------------------------------------------------------------------- /angular-16-client/src/app/app.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bezkoder/angular-16-node-project/HEAD/angular-16-client/src/app/app.component.ts -------------------------------------------------------------------------------- /angular-16-client/src/app/app.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bezkoder/angular-16-node-project/HEAD/angular-16-client/src/app/app.module.ts -------------------------------------------------------------------------------- /angular-16-client/src/app/components/add-tutorial/add-tutorial.component.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bezkoder/angular-16-node-project/HEAD/angular-16-client/src/app/components/add-tutorial/add-tutorial.component.css -------------------------------------------------------------------------------- /angular-16-client/src/app/components/add-tutorial/add-tutorial.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bezkoder/angular-16-node-project/HEAD/angular-16-client/src/app/components/add-tutorial/add-tutorial.component.html -------------------------------------------------------------------------------- /angular-16-client/src/app/components/add-tutorial/add-tutorial.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bezkoder/angular-16-node-project/HEAD/angular-16-client/src/app/components/add-tutorial/add-tutorial.component.spec.ts -------------------------------------------------------------------------------- /angular-16-client/src/app/components/add-tutorial/add-tutorial.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bezkoder/angular-16-node-project/HEAD/angular-16-client/src/app/components/add-tutorial/add-tutorial.component.ts -------------------------------------------------------------------------------- /angular-16-client/src/app/components/tutorial-details/tutorial-details.component.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bezkoder/angular-16-node-project/HEAD/angular-16-client/src/app/components/tutorial-details/tutorial-details.component.css -------------------------------------------------------------------------------- /angular-16-client/src/app/components/tutorial-details/tutorial-details.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bezkoder/angular-16-node-project/HEAD/angular-16-client/src/app/components/tutorial-details/tutorial-details.component.html -------------------------------------------------------------------------------- /angular-16-client/src/app/components/tutorial-details/tutorial-details.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bezkoder/angular-16-node-project/HEAD/angular-16-client/src/app/components/tutorial-details/tutorial-details.component.spec.ts -------------------------------------------------------------------------------- /angular-16-client/src/app/components/tutorial-details/tutorial-details.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bezkoder/angular-16-node-project/HEAD/angular-16-client/src/app/components/tutorial-details/tutorial-details.component.ts -------------------------------------------------------------------------------- /angular-16-client/src/app/components/tutorials-list/tutorials-list.component.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bezkoder/angular-16-node-project/HEAD/angular-16-client/src/app/components/tutorials-list/tutorials-list.component.css -------------------------------------------------------------------------------- /angular-16-client/src/app/components/tutorials-list/tutorials-list.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bezkoder/angular-16-node-project/HEAD/angular-16-client/src/app/components/tutorials-list/tutorials-list.component.html -------------------------------------------------------------------------------- /angular-16-client/src/app/components/tutorials-list/tutorials-list.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bezkoder/angular-16-node-project/HEAD/angular-16-client/src/app/components/tutorials-list/tutorials-list.component.spec.ts -------------------------------------------------------------------------------- /angular-16-client/src/app/components/tutorials-list/tutorials-list.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bezkoder/angular-16-node-project/HEAD/angular-16-client/src/app/components/tutorials-list/tutorials-list.component.ts -------------------------------------------------------------------------------- /angular-16-client/src/app/models/tutorial.model.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bezkoder/angular-16-node-project/HEAD/angular-16-client/src/app/models/tutorial.model.spec.ts -------------------------------------------------------------------------------- /angular-16-client/src/app/models/tutorial.model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bezkoder/angular-16-node-project/HEAD/angular-16-client/src/app/models/tutorial.model.ts -------------------------------------------------------------------------------- /angular-16-client/src/app/services/tutorial.service.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bezkoder/angular-16-node-project/HEAD/angular-16-client/src/app/services/tutorial.service.spec.ts -------------------------------------------------------------------------------- /angular-16-client/src/app/services/tutorial.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bezkoder/angular-16-node-project/HEAD/angular-16-client/src/app/services/tutorial.service.ts -------------------------------------------------------------------------------- /angular-16-client/src/assets/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /angular-16-client/src/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bezkoder/angular-16-node-project/HEAD/angular-16-client/src/favicon.ico -------------------------------------------------------------------------------- /angular-16-client/src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bezkoder/angular-16-node-project/HEAD/angular-16-client/src/index.html -------------------------------------------------------------------------------- /angular-16-client/src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bezkoder/angular-16-node-project/HEAD/angular-16-client/src/main.ts -------------------------------------------------------------------------------- /angular-16-client/src/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bezkoder/angular-16-node-project/HEAD/angular-16-client/src/styles.css -------------------------------------------------------------------------------- /angular-16-client/tsconfig.app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bezkoder/angular-16-node-project/HEAD/angular-16-client/tsconfig.app.json -------------------------------------------------------------------------------- /angular-16-client/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bezkoder/angular-16-node-project/HEAD/angular-16-client/tsconfig.json -------------------------------------------------------------------------------- /angular-16-client/tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bezkoder/angular-16-node-project/HEAD/angular-16-client/tsconfig.spec.json -------------------------------------------------------------------------------- /angular-node-js-project-example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bezkoder/angular-16-node-project/HEAD/angular-node-js-project-example.png -------------------------------------------------------------------------------- /node-express-mongodb-server/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | package-lock.json -------------------------------------------------------------------------------- /node-express-mongodb-server/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bezkoder/angular-16-node-project/HEAD/node-express-mongodb-server/README.md -------------------------------------------------------------------------------- /node-express-mongodb-server/app/config/db.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bezkoder/angular-16-node-project/HEAD/node-express-mongodb-server/app/config/db.config.js -------------------------------------------------------------------------------- /node-express-mongodb-server/app/controllers/tutorial.controller.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bezkoder/angular-16-node-project/HEAD/node-express-mongodb-server/app/controllers/tutorial.controller.js -------------------------------------------------------------------------------- /node-express-mongodb-server/app/models/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bezkoder/angular-16-node-project/HEAD/node-express-mongodb-server/app/models/index.js -------------------------------------------------------------------------------- /node-express-mongodb-server/app/models/tutorial.model.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bezkoder/angular-16-node-project/HEAD/node-express-mongodb-server/app/models/tutorial.model.js -------------------------------------------------------------------------------- /node-express-mongodb-server/app/routes/turorial.routes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bezkoder/angular-16-node-project/HEAD/node-express-mongodb-server/app/routes/turorial.routes.js -------------------------------------------------------------------------------- /node-express-mongodb-server/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bezkoder/angular-16-node-project/HEAD/node-express-mongodb-server/package.json -------------------------------------------------------------------------------- /node-express-mongodb-server/server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bezkoder/angular-16-node-project/HEAD/node-express-mongodb-server/server.js -------------------------------------------------------------------------------- /node-express-mysql-server/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | package-lock.json -------------------------------------------------------------------------------- /node-express-mysql-server/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bezkoder/angular-16-node-project/HEAD/node-express-mysql-server/README.md -------------------------------------------------------------------------------- /node-express-mysql-server/app/config/db.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bezkoder/angular-16-node-project/HEAD/node-express-mysql-server/app/config/db.config.js -------------------------------------------------------------------------------- /node-express-mysql-server/app/controllers/tutorial.controller.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bezkoder/angular-16-node-project/HEAD/node-express-mysql-server/app/controllers/tutorial.controller.js -------------------------------------------------------------------------------- /node-express-mysql-server/app/models/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bezkoder/angular-16-node-project/HEAD/node-express-mysql-server/app/models/index.js -------------------------------------------------------------------------------- /node-express-mysql-server/app/models/tutorial.model.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bezkoder/angular-16-node-project/HEAD/node-express-mysql-server/app/models/tutorial.model.js -------------------------------------------------------------------------------- /node-express-mysql-server/app/routes/turorial.routes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bezkoder/angular-16-node-project/HEAD/node-express-mysql-server/app/routes/turorial.routes.js -------------------------------------------------------------------------------- /node-express-mysql-server/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bezkoder/angular-16-node-project/HEAD/node-express-mysql-server/package.json -------------------------------------------------------------------------------- /node-express-mysql-server/server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bezkoder/angular-16-node-project/HEAD/node-express-mysql-server/server.js -------------------------------------------------------------------------------- /node-express-postgresql-server/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | package-lock.json -------------------------------------------------------------------------------- /node-express-postgresql-server/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bezkoder/angular-16-node-project/HEAD/node-express-postgresql-server/README.md -------------------------------------------------------------------------------- /node-express-postgresql-server/app/config/db.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bezkoder/angular-16-node-project/HEAD/node-express-postgresql-server/app/config/db.config.js -------------------------------------------------------------------------------- /node-express-postgresql-server/app/controllers/tutorial.controller.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bezkoder/angular-16-node-project/HEAD/node-express-postgresql-server/app/controllers/tutorial.controller.js -------------------------------------------------------------------------------- /node-express-postgresql-server/app/models/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bezkoder/angular-16-node-project/HEAD/node-express-postgresql-server/app/models/index.js -------------------------------------------------------------------------------- /node-express-postgresql-server/app/models/tutorial.model.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bezkoder/angular-16-node-project/HEAD/node-express-postgresql-server/app/models/tutorial.model.js -------------------------------------------------------------------------------- /node-express-postgresql-server/app/routes/turorial.routes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bezkoder/angular-16-node-project/HEAD/node-express-postgresql-server/app/routes/turorial.routes.js -------------------------------------------------------------------------------- /node-express-postgresql-server/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bezkoder/angular-16-node-project/HEAD/node-express-postgresql-server/package.json -------------------------------------------------------------------------------- /node-express-postgresql-server/server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bezkoder/angular-16-node-project/HEAD/node-express-postgresql-server/server.js --------------------------------------------------------------------------------