All Projects → ikismail → Angular Shoppingcart

ikismail / Angular Shoppingcart

Licence: mit
ShoppingCart (Ecommerce) 🛒 Application using Angular10, Firebase, PWA, Drag&Drop, Materialized Bootstrap and i18n 🚀🔥👨‍💻

Programming Languages

typescript
32286 projects

Projects that are alternatives of or similar to Angular Shoppingcart

Vue Firebase Auth Vuex
Vue Firebase🔥 Authentication with Vuex
Stars: ✭ 248 (-48.65%)
Mutual labels:  firebase, firebase-authentication, pwa, progressive-web-app
Angular Commerce
Angular components for scaffolding online store
Stars: ✭ 526 (+8.9%)
Mutual labels:  ecommerce, shopping-cart, firebase, firebase-database
Sol Journal
✎ Simple, personal journaling progressive web app
Stars: ✭ 470 (-2.69%)
Mutual labels:  firebase, pwa, progressive-web-app
Vue Shoppingcart
ShoppingCart (Ecommerce) 🛒 Application using Vuejs, + Node.js + Express + MongoDB 🚀🤘
Stars: ✭ 141 (-70.81%)
Mutual labels:  ecommerce, shopping-cart, progressive-web-app
Laravel Firebase
A Laravel package for the Firebase PHP Admin SDK
Stars: ✭ 369 (-23.6%)
Mutual labels:  firebase, firebase-database, firebase-authentication
Firebase Js Sdk
Firebase Javascript SDK
Stars: ✭ 3,844 (+695.86%)
Mutual labels:  firebase, firebase-database, firebase-authentication
React Shopping Cart
🛍️ Simple ecommerce cart application built with React Redux
Stars: ✭ 1,808 (+274.33%)
Mutual labels:  ecommerce, shopping-cart, firebase
React Gatsby Firebase Authentication
🐣🔥Starter Project / Boilerplate for Authentication with Firebase and plain React in Gatsby.js
Stars: ✭ 356 (-26.29%)
Mutual labels:  firebase, firebase-database, firebase-authentication
Sample Pie Shop
Example e-commerce site to explore PWA (Progressive Web App) use cases.
Stars: ✭ 206 (-57.35%)
Mutual labels:  ecommerce, pwa, progressive-web-app
Buefy Shop
A sample shop built with Nuxt, Stripe, Firebase and Serverless Functions
Stars: ✭ 207 (-57.14%)
Mutual labels:  ecommerce, firebase, pwa
React Redux Firebase Authentication
🔥Boilerplate Project for Authentication with Firebase in React and Redux
Stars: ✭ 265 (-45.13%)
Mutual labels:  firebase, firebase-database, firebase-authentication
Magicprint Ecommerce App Android
E-Commerce App Source Code for Android with Material Design Pattern Using Firebase and MySQL with Android Lottie Animations just like Flipkart, Myntra and Amazon :)
Stars: ✭ 331 (-31.47%)
Mutual labels:  ecommerce, shopping-cart, firebase
Sapper Ecommerce
Svelte ecommerce - Headless, Authentication, Cart & Checkout, TailwindCSS, Server Rendered, Proxy + API Integrated, Animations, Stores, Lazy Loading, Loading Indicators, Carousel, Instant Search, Faceted Filters, 1 command deploy to production, Open Source, MIT license. Join us as contributor ([email protected])
Stars: ✭ 289 (-40.17%)
Mutual labels:  ecommerce, shopping-cart, pwa
Firebase Admin Java
Firebase Admin Java SDK
Stars: ✭ 345 (-28.57%)
Mutual labels:  firebase, firebase-database, firebase-authentication
Vuesion
Vuesion is a boilerplate that helps product teams build faster than ever with fewer headaches and modern best practices across engineering & design.
Stars: ✭ 2,510 (+419.67%)
Mutual labels:  i18n, progressive-web-app, pwa
Microweber
Drag and Drop Website Builder and CMS with E-commerce
Stars: ✭ 2,226 (+360.87%)
Mutual labels:  ecommerce, shopping-cart, drag-and-drop
Angularmaterialfirebase
🔥 Full stack starter app with Angular 8, Material Design and Firebase (+ demo)
Stars: ✭ 229 (-52.59%)
Mutual labels:  firebase, firebase-database, firebase-authentication
Firebase Ios Sdk
Firebase iOS SDK
Stars: ✭ 3,309 (+585.09%)
Mutual labels:  firebase, firebase-database, firebase-authentication
Cezerin
Cezerin is React and Node.js based eCommerce platform.
Stars: ✭ 1,985 (+310.97%)
Mutual labels:  ecommerce, shopping-cart, pwa
Vuejs Firebase Shopping Cart
Shopping cart demo using Vuejs and Firebase
Stars: ✭ 274 (-43.27%)
Mutual labels:  shopping-cart, firebase, firebase-database

Angular-10 - ShoppingCart + MDBootstrap + Firebase (Realtime Database) + i18n

HitCount GitHub forks GitHub stars GitHub issues License: MIT npm Twitter

Developing a ShoppingCart (Ecommerce) Application using Angular-10.

Live Demo : Angular-shopping-cart

This project was generated with Angular CLI version 10.0.1.

Functionalities

  1. User Registration using Firebase Authentication (using Email/Password | Google Authentication )
  2. CRUD Operations like
  • User can add product to his cart.
  • Admin can add product to the product list
  • Admin can edit/delete the product.
  1. Drag and Drop Angular Drag & Drop
  1. Security
  • Implmented Authentication and Authorization

Tools and Technologies

  • Technology: HTML, MDBootstrap, CSS, Angular-10, Firebase, i18n, Drag & Drop, Progressive Web Application, jsPDF (to download Receipt as PDF).
  • Database : Angular Firebase (Realtime Database).

This Projects covers all fundamentals of Angular

  • Multiple Modules
  • Components, Template and DataBinding
  • Form Validation
  • HttpClient
  • Animations
  • Dependency Injection
  • Routing & Navigation
  • Service Workers
  • Pipes
  • Gaurds etc..

Installation

  1. Angular CLI

  2. NodeJs

  3. Package Manager - NPM / Yarn

  4. Clone the repository and run npm install if you use npm as package manager or yarn install if you use yarn as package manager.

  5. Angular + Firebase Tutorial - Angular + Firebase + Typescript — Step by step tutorial

  6. Activate Firebase Authentication Providers

    Authentication -> Sign-in-method -> Enable Email/Password & Google provider

  7. Update the Firebase (Realtime Database) Rules

    Database -> Rules

    {
    "rules": {
        ".read":true,
        ".write": true
    }
    }
    
  8. Configure your firebase configuration src/environments/firebaseConfig.ts

    export const FireBaseConfig = {
        apiKey: "YOUR_API_KEY",
        authDomain: "YOUR_AUTH_DOMAIN",
        databaseURL: "YOUR_DATABASE_URL",
        projectId: "YOUR_PROJECT_ID",
        storageBucket: "YOUR_STORAGE_BUCKET",
        messagingSenderId: "YOUR_SENDER_ID"
    };
    
  9. For Admin Role Register or SignIn with Google Auth

    your registered data will be saved inside the firebase clients table.

        -clients
            -LRSkWxGAKQAFZmyfsx6
                -createdOn: "1542046725"
                -email: "<<YOUR_REGISTERED_EMAIL_ID>>"
                -isAdmin: false      <--- Change this to true
                ...
    

    Now you can able to access the Admin Privileges like Creating Product, Removing Product, etc..

  10. Run the Server.

How can I support the developer ?

  • Star my Github repo ⭐
  • Create pull requests, submit bugs, suggest new features or documentation updates 🛠

Screenshots:

Home Page:

Alt text

Products Page:

Alt text

Work Board Page:

Alt text

Development server

Run ng serve for a dev server. Navigate to http://localhost:4200/. The app will automatically reload if you change any of the source files.

Code scaffolding

Run ng generate component component-name to generate a new component. You can also use ng generate directive|pipe|service|class|guard|interface|enum|module.

Build

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.

Running unit tests

Run ng test to execute the unit tests via Karma.

Running end-to-end tests

Run ng e2e to execute the end-to-end tests via Protractor.

Further help

To get more help on the Angular CLI use ng help or go check out the Angular CLI README.

Somethings wrong!!

  • If you find that something's wrong with this package, you can let me know by raising an issue on the GitHub issue tracker

License

This project is licensed under the MIT License - see the MIT license file for details

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].