Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/andrewjbateman/mean-stack-app
:clipboard: App using an Angular frontend to Create, Read, Update & Delete (CRUD) data from a Node.js backend server database.
https://github.com/andrewjbateman/mean-stack-app
angular angular12 css3 express-middleware full-stack html5 mongodb nodejs typescript
Last synced: 7 days ago
JSON representation
:clipboard: App using an Angular frontend to Create, Read, Update & Delete (CRUD) data from a Node.js backend server database.
- Host: GitHub
- URL: https://github.com/andrewjbateman/mean-stack-app
- Owner: AndrewJBateman
- License: mit
- Created: 2019-05-22T10:37:59.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2023-03-04T03:47:07.000Z (almost 2 years ago)
- Last Synced: 2024-11-07T03:33:33.282Z (about 2 months ago)
- Topics: angular, angular12, css3, express-middleware, full-stack, html5, mongodb, nodejs, typescript
- Language: TypeScript
- Homepage:
- Size: 4.23 MB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 18
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# :zap: Mean Full Stack App
* Mongo Express Angular Node (MEAN) full-stack app, integrates an Angular frontend with a Node.js backend.
* **Note:** to open web links in a new window use: _ctrl+click on link_![GitHub repo size](https://img.shields.io/github/repo-size/AndrewJBateman/mean-stack-app?style=plastic)
![GitHub pull requests](https://img.shields.io/github/issues-pr/AndrewJBateman/mean-stack-app?style=plastic)
![GitHub Repo stars](https://img.shields.io/github/stars/AndrewJBateman/mean-stack-app?style=plastic)
![GitHub last commit](https://img.shields.io/github/last-commit/AndrewJBateman/mean-stack-app?style=plastic)## :page_facing_up: Table of contents
* [:zap: Mean Full Stack App](#zap-mean-full-stack-app)
* [:page_facing_up: Table of contents](#page_facing_up-table-of-contents)
* [:books: General info](#books-general-info)
* [:camera: Screenshots](#camera-screenshots)
* [:signal_strength: Technologies](#signal_strength-technologies)
* [:floppy_disk: Frontend & Backend Setup](#floppy_disk-frontend--backend-setup)
* [:computer: Code Examples](#computer-code-examples)
* [:cool: Features](#cool-features)
* [:clipboard: Status & To-Do List](#clipboard-status--to-do-list)
* [:clap: Inspiration](#clap-inspiration)
* [:file_folder: License](#file_folder-license)
* [:envelope: Contact](#envelope-contact)## :books: General info
* includes signup and login forms
* user id and post details stored in MongoDB cloud Atlas database
* full Create Read Update and Delete (CRUD) database functionality
* uses the [Angular canActive interface](https://angular.io/api/router/CanActivate) as a guard deciding if a route can be activated
* The error component is an Entry component but since 9.0.0 with Ivy, the entryComponents property is no longer necessary. See deprecations guide.## :camera: Screenshots
![Example screenshot](./img/login.png)
## :signal_strength: Technologies
* [MongoDB Cloud Atlas](https://www.mongodb.com/cloud/atlas)
* [npm mongodb v3](https://www.npmjs.com/package/mongodb) official MongoDB driver for Node.js
* [Express.js middleware v4](https://expressjs.com/)
* [Angular framework v12](https://angular.io/)
* [Angular Reactive Forms](https://angular.io/guide/reactive-forms) built around observable streams
* [Node.js v14](https://nodejs.org/es/)
* [multer v1](https://www.npmjs.com/package/multer) node.js middleware for handling multipart/form-data to upload files## :floppy_disk: Frontend & Backend Setup
* Install dependencies using `npm i`
* Backend: Add database access string to backend/app.js `CONNECTION_URL` then run `nodemon server.js` to start server
* Frontend: Run `ng serve` for a dev server then navigate to `http://localhost:4200/`.
* Run `ng build` to build the project. The build artifacts will be stored in the `dist/` directory. Use the `--prod` flag for a production build.## :computer: Code Examples
* extract from `error-interceptor.ts`
```typescript
// intercept method; attached to every outgoing http request
intercept(req: HttpRequest, next: HttpHandler) {
return next.handle(req).pipe(
catchError((error: HttpErrorResponse) => {
let errorMessage = 'An unknown error occured';
if (error.error.message) {
errorMessage = error.error.message;
this.dialog.open(ErrorComponent, { data: { message: errorMessage } });
}
return throwError(error);
})
);
}
```## :cool: Features
* Spinner is displayed while data loading, controlled by a boolean valuexº
## :clipboard: Status & To-Do List
* Status: Incomplete. Backend connects to database and frontend displays login page. Sign-up and Login not working. Update or replace.
* To-Do: Show add post form## :clap: Inspiration
* [MEAN Stack Tutorial)](https://www.javatpoint.com/mean-stack)
* [Stackoverflow: Can't connect mongoDB database to Atlas due to server and shell mismatch
](https://stackoverflow.com/questions/58729984/cant-connect-mongodb-database-to-atlas-due-to-server-and-shell-mismatch)## :file_folder: License
* This project is licensed under the terms of the MIT license.
## :envelope: Contact
* Repo created by [ABateman](https://github.com/AndrewJBateman), email: [email protected]