├── README.md ├── angular-14-client ├── .browserslistrc ├── .editorconfig ├── .gitignore ├── README.md ├── angular-14-crud-example.png ├── angular.json ├── karma.conf.js ├── 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 │ ├── environments │ │ ├── environment.prod.ts │ │ └── environment.ts │ ├── favicon.ico │ ├── index.html │ ├── main.ts │ ├── polyfills.ts │ ├── styles.css │ └── test.ts ├── tsconfig.app.json ├── tsconfig.json └── tsconfig.spec.json ├── mean-stack-crud-example-angular-14.png └── node-express-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/mean-stack-angular-14/HEAD/README.md -------------------------------------------------------------------------------- /angular-14-client/.browserslistrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bezkoder/mean-stack-angular-14/HEAD/angular-14-client/.browserslistrc -------------------------------------------------------------------------------- /angular-14-client/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bezkoder/mean-stack-angular-14/HEAD/angular-14-client/.editorconfig -------------------------------------------------------------------------------- /angular-14-client/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bezkoder/mean-stack-angular-14/HEAD/angular-14-client/.gitignore -------------------------------------------------------------------------------- /angular-14-client/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bezkoder/mean-stack-angular-14/HEAD/angular-14-client/README.md -------------------------------------------------------------------------------- /angular-14-client/angular-14-crud-example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bezkoder/mean-stack-angular-14/HEAD/angular-14-client/angular-14-crud-example.png -------------------------------------------------------------------------------- /angular-14-client/angular.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bezkoder/mean-stack-angular-14/HEAD/angular-14-client/angular.json -------------------------------------------------------------------------------- /angular-14-client/karma.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bezkoder/mean-stack-angular-14/HEAD/angular-14-client/karma.conf.js -------------------------------------------------------------------------------- /angular-14-client/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bezkoder/mean-stack-angular-14/HEAD/angular-14-client/package-lock.json -------------------------------------------------------------------------------- /angular-14-client/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bezkoder/mean-stack-angular-14/HEAD/angular-14-client/package.json -------------------------------------------------------------------------------- /angular-14-client/src/app/app-routing.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bezkoder/mean-stack-angular-14/HEAD/angular-14-client/src/app/app-routing.module.ts -------------------------------------------------------------------------------- /angular-14-client/src/app/app.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /angular-14-client/src/app/app.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bezkoder/mean-stack-angular-14/HEAD/angular-14-client/src/app/app.component.html -------------------------------------------------------------------------------- /angular-14-client/src/app/app.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bezkoder/mean-stack-angular-14/HEAD/angular-14-client/src/app/app.component.spec.ts -------------------------------------------------------------------------------- /angular-14-client/src/app/app.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bezkoder/mean-stack-angular-14/HEAD/angular-14-client/src/app/app.component.ts -------------------------------------------------------------------------------- /angular-14-client/src/app/app.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bezkoder/mean-stack-angular-14/HEAD/angular-14-client/src/app/app.module.ts -------------------------------------------------------------------------------- /angular-14-client/src/app/components/add-tutorial/add-tutorial.component.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bezkoder/mean-stack-angular-14/HEAD/angular-14-client/src/app/components/add-tutorial/add-tutorial.component.css -------------------------------------------------------------------------------- /angular-14-client/src/app/components/add-tutorial/add-tutorial.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bezkoder/mean-stack-angular-14/HEAD/angular-14-client/src/app/components/add-tutorial/add-tutorial.component.html -------------------------------------------------------------------------------- /angular-14-client/src/app/components/add-tutorial/add-tutorial.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bezkoder/mean-stack-angular-14/HEAD/angular-14-client/src/app/components/add-tutorial/add-tutorial.component.spec.ts -------------------------------------------------------------------------------- /angular-14-client/src/app/components/add-tutorial/add-tutorial.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bezkoder/mean-stack-angular-14/HEAD/angular-14-client/src/app/components/add-tutorial/add-tutorial.component.ts -------------------------------------------------------------------------------- /angular-14-client/src/app/components/tutorial-details/tutorial-details.component.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bezkoder/mean-stack-angular-14/HEAD/angular-14-client/src/app/components/tutorial-details/tutorial-details.component.css -------------------------------------------------------------------------------- /angular-14-client/src/app/components/tutorial-details/tutorial-details.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bezkoder/mean-stack-angular-14/HEAD/angular-14-client/src/app/components/tutorial-details/tutorial-details.component.html -------------------------------------------------------------------------------- /angular-14-client/src/app/components/tutorial-details/tutorial-details.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bezkoder/mean-stack-angular-14/HEAD/angular-14-client/src/app/components/tutorial-details/tutorial-details.component.spec.ts -------------------------------------------------------------------------------- /angular-14-client/src/app/components/tutorial-details/tutorial-details.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bezkoder/mean-stack-angular-14/HEAD/angular-14-client/src/app/components/tutorial-details/tutorial-details.component.ts -------------------------------------------------------------------------------- /angular-14-client/src/app/components/tutorials-list/tutorials-list.component.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bezkoder/mean-stack-angular-14/HEAD/angular-14-client/src/app/components/tutorials-list/tutorials-list.component.css -------------------------------------------------------------------------------- /angular-14-client/src/app/components/tutorials-list/tutorials-list.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bezkoder/mean-stack-angular-14/HEAD/angular-14-client/src/app/components/tutorials-list/tutorials-list.component.html -------------------------------------------------------------------------------- /angular-14-client/src/app/components/tutorials-list/tutorials-list.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bezkoder/mean-stack-angular-14/HEAD/angular-14-client/src/app/components/tutorials-list/tutorials-list.component.spec.ts -------------------------------------------------------------------------------- /angular-14-client/src/app/components/tutorials-list/tutorials-list.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bezkoder/mean-stack-angular-14/HEAD/angular-14-client/src/app/components/tutorials-list/tutorials-list.component.ts -------------------------------------------------------------------------------- /angular-14-client/src/app/models/tutorial.model.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bezkoder/mean-stack-angular-14/HEAD/angular-14-client/src/app/models/tutorial.model.spec.ts -------------------------------------------------------------------------------- /angular-14-client/src/app/models/tutorial.model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bezkoder/mean-stack-angular-14/HEAD/angular-14-client/src/app/models/tutorial.model.ts -------------------------------------------------------------------------------- /angular-14-client/src/app/services/tutorial.service.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bezkoder/mean-stack-angular-14/HEAD/angular-14-client/src/app/services/tutorial.service.spec.ts -------------------------------------------------------------------------------- /angular-14-client/src/app/services/tutorial.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bezkoder/mean-stack-angular-14/HEAD/angular-14-client/src/app/services/tutorial.service.ts -------------------------------------------------------------------------------- /angular-14-client/src/assets/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /angular-14-client/src/environments/environment.prod.ts: -------------------------------------------------------------------------------- 1 | export const environment = { 2 | production: true 3 | }; 4 | -------------------------------------------------------------------------------- /angular-14-client/src/environments/environment.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bezkoder/mean-stack-angular-14/HEAD/angular-14-client/src/environments/environment.ts -------------------------------------------------------------------------------- /angular-14-client/src/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bezkoder/mean-stack-angular-14/HEAD/angular-14-client/src/favicon.ico -------------------------------------------------------------------------------- /angular-14-client/src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bezkoder/mean-stack-angular-14/HEAD/angular-14-client/src/index.html -------------------------------------------------------------------------------- /angular-14-client/src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bezkoder/mean-stack-angular-14/HEAD/angular-14-client/src/main.ts -------------------------------------------------------------------------------- /angular-14-client/src/polyfills.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bezkoder/mean-stack-angular-14/HEAD/angular-14-client/src/polyfills.ts -------------------------------------------------------------------------------- /angular-14-client/src/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bezkoder/mean-stack-angular-14/HEAD/angular-14-client/src/styles.css -------------------------------------------------------------------------------- /angular-14-client/src/test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bezkoder/mean-stack-angular-14/HEAD/angular-14-client/src/test.ts -------------------------------------------------------------------------------- /angular-14-client/tsconfig.app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bezkoder/mean-stack-angular-14/HEAD/angular-14-client/tsconfig.app.json -------------------------------------------------------------------------------- /angular-14-client/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bezkoder/mean-stack-angular-14/HEAD/angular-14-client/tsconfig.json -------------------------------------------------------------------------------- /angular-14-client/tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bezkoder/mean-stack-angular-14/HEAD/angular-14-client/tsconfig.spec.json -------------------------------------------------------------------------------- /mean-stack-crud-example-angular-14.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bezkoder/mean-stack-angular-14/HEAD/mean-stack-crud-example-angular-14.png -------------------------------------------------------------------------------- /node-express-server/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | package-lock.json -------------------------------------------------------------------------------- /node-express-server/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bezkoder/mean-stack-angular-14/HEAD/node-express-server/README.md -------------------------------------------------------------------------------- /node-express-server/app/config/db.config.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | url: "mongodb://localhost:27017/bezkoder_db" 3 | }; 4 | -------------------------------------------------------------------------------- /node-express-server/app/controllers/tutorial.controller.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bezkoder/mean-stack-angular-14/HEAD/node-express-server/app/controllers/tutorial.controller.js -------------------------------------------------------------------------------- /node-express-server/app/models/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bezkoder/mean-stack-angular-14/HEAD/node-express-server/app/models/index.js -------------------------------------------------------------------------------- /node-express-server/app/models/tutorial.model.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bezkoder/mean-stack-angular-14/HEAD/node-express-server/app/models/tutorial.model.js -------------------------------------------------------------------------------- /node-express-server/app/routes/turorial.routes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bezkoder/mean-stack-angular-14/HEAD/node-express-server/app/routes/turorial.routes.js -------------------------------------------------------------------------------- /node-express-server/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bezkoder/mean-stack-angular-14/HEAD/node-express-server/package.json -------------------------------------------------------------------------------- /node-express-server/server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bezkoder/mean-stack-angular-14/HEAD/node-express-server/server.js --------------------------------------------------------------------------------