Found 1,618 repositories(showing 30)
waseembarcha
A basic CRUD app for products build with vuejs and firestore
Inventory Management System MERN CRUD App (MERN Stack Project). A simple MERN project that lets the user insert, update, delete & get products from the MongoDB.
jogetworkflow
Mirror of the old Joget Workflow v2 SVN repository. Please visit https://github.com/jogetworkflow/jw-community for the current version. Joget Workflow is an open source web-based workflow software to develop workflow and Business Process Management applications. More than just a workflow or BPM platform, Joget offers full-fledged agile development capabilities (consisting of processes, forms, lists, CRUD and UI), not just back-end EAI/orchestration/integration or the task-based interface for traditional workflow/BPM products. So for example, build a CRM sales force automation app instead of just a sales quotation approval process. The compiled binaries are available for download at http://www.joget.org/download
dunkerbunker
E-Commerce app created in Flutter to learn the learn flutter in detail. All backend is done using mongoDB and mongoose. The app consists of both client and admin side with multiple features such as CRUD for products, categories, trending tab, cart system and google pay checkout. It has only been tested on Android.
OfficeDev
[ARCHIVED] CRUD Product List Provider Hosted ASP.NET MVC App
alaevate
Prodigy JSON Server is a fake REST API built with json-server for simulating product data management. It's designed to work with the Prodigy Manager app, allowing local testing of CRUD operations without a real database.
jlira5418
## Step 1 - Scraping Complete your initial scraping using Jupyter Notebook, BeautifulSoup, Pandas, and Requests/Splinter. * Create a Jupyter Notebook file called `mission_to_mars.ipynb` and use this to complete all of your scraping and analysis tasks. The following outlines what you need to scrape. ### NASA Mars News * Scrape the [Mars News Site](https://redplanetscience.com/) and collect the latest News Title and Paragraph Text. Assign the text to variables that you can reference later. ```python # Example: news_title = "NASA's Next Mars Mission to Investigate Interior of Red Planet" news_p = "Preparation of NASA's next spacecraft to Mars, InSight, has ramped up this summer, on course for launch next May from Vandenberg Air Force Base in central California -- the first interplanetary launch in history from America's West Coast." ``` ### JPL Mars Space Images - Featured Image * Visit the url for the Featured Space Image site [here](https://spaceimages-mars.com). * Use splinter to navigate the site and find the image url for the current Featured Mars Image and assign the url string to a variable called `featured_image_url`. * Make sure to find the image url to the full size `.jpg` image. * Make sure to save a complete url string for this image. ```python # Example: featured_image_url = 'https://spaceimages-mars.com/image/featured/mars2.jpg' ``` ### Mars Facts * Visit the Mars Facts webpage [here](https://galaxyfacts-mars.com) and use Pandas to scrape the table containing facts about the planet including Diameter, Mass, etc. * Use Pandas to convert the data to a HTML table string. ### Mars Hemispheres * Visit the astrogeology site [here](https://marshemispheres.com/) to obtain high resolution images for each of Mar's hemispheres. * You will need to click each of the links to the hemispheres in order to find the image url to the full resolution image. * Save both the image url string for the full resolution hemisphere image, and the Hemisphere title containing the hemisphere name. Use a Python dictionary to store the data using the keys `img_url` and `title`. * Append the dictionary with the image url string and the hemisphere title to a list. This list will contain one dictionary for each hemisphere. ```python # Example: hemisphere_image_urls = [ {"title": "Valles Marineris Hemisphere", "img_url": "..."}, {"title": "Cerberus Hemisphere", "img_url": "..."}, {"title": "Schiaparelli Hemisphere", "img_url": "..."}, {"title": "Syrtis Major Hemisphere", "img_url": "..."}, ] ``` - - - ## Step 2 - MongoDB and Flask Application Use MongoDB with Flask templating to create a new HTML page that displays all of the information that was scraped from the URLs above. * Start by converting your Jupyter notebook into a Python script called `scrape_mars.py` with a function called `scrape` that will execute all of your scraping code from above and return one Python dictionary containing all of the scraped data. * Next, create a route called `/scrape` that will import your `scrape_mars.py` script and call your `scrape` function. * Store the return value in Mongo as a Python dictionary. * Create a root route `/` that will query your Mongo database and pass the mars data into an HTML template to display the data. * Create a template HTML file called `index.html` that will take the mars data dictionary and display all of the data in the appropriate HTML elements. Use the following as a guide for what the final product should look like, but feel free to create your own design.  - - - ## Step 3 - Submission To submit your work to BootCampSpot, create a new GitHub repository and upload the following: 1. The Jupyter Notebook containing the scraping code used. 2. Screenshots of your final application. 3. Submit the link to your new repository to BootCampSpot. 4. Ensure your repository has regular commits and a thorough README.md file ## Hints * Use Splinter to navigate the sites when needed and BeautifulSoup to help find and parse out the necessary data. * Use Pymongo for CRUD applications for your database. For this homework, you can simply overwrite the existing document each time the `/scrape` url is visited and new data is obtained. * Use Bootstrap to structure your HTML template.
anisul-Islam
No description available
LuckyMan-0100
Inventory Management System MERN CRUD App (MERN Stack Project). A simple MERN project that lets the user insert, update, delete & get products from the MongoDB.
briltec
Using flutter and firebase I built a mock e-commerse app with authentication, CRUD operations, ui widgets, and more. This app includes authentication, home, search with autofill, item details, and cart pages for the buyer and an add product page for the seller.
Usman-bin-Khalid
E-Shop is a Flutter-based offline-first E-Commerce app with local storage (Hive/Sqflite). Features include product CRUD with images, cart, favorites, profile updates, and instant UI sync using Provider/GetX. No server required, fast and fully offline.
CodeWithMarish
No description available
nhrrob
A laravel 8 app with basic product crud
nhrrob
A laravel 7 app with basic product crud
waelelsafty07
Built the RESTful API of the app CRUD operations on products, categories, reviews, whishlist, cart, orders and payments
Pakash2211
React-CRUD Product App ---> Tech Stack ---> React.js | Redux | Chakra UI | JSON server | axios ----> Here you can add new product | view | delete | edit and also able to create a new product card ---> All data come from JSON server
AnkanSaha
This Store Management Backend Node App is built using Typescript, ExpressJS, and MongoDB. It provides efficient management of products, orders, and customer data. The app's backend functionality includes user authentication, CRUD operations, and data validation. Its clean code and scalability make it ideal for any e-commerce or retail store.
AzizAabbour
Mini e-commerce web app built with ReactJS and Redux Toolkit. Users can view products, add them to the cart, update quantities, and remove items. Clean UI with cards and grid layout. Fully functional CRUD operations showcasing state management and React skills.
mErn Commerce is a full-stack web app, built with MongoDB, Express, React, Node (MERN stack), and several other tools, such as TypeScrip, Mongoose, Redux, Tailwind, ShadcnUI, Stripe, and more. It includess a robust authentication with JWT, payments integration, full CRUD functionality, pagination, product search, and many other useful features.
shrikantTudip
Spring Boot MyBatis CRUD Implementation App with product Insert, Update, Delete, Select
jojozhuang
A web app to manage products, supporting all CRUD operations, built with React.
steve-njuguna-k
Django Product Directory App for Performing CRUD Operations using AJAX, Bootstrap Modal Forms, Django Rest API & PostgreSQL Database
ManuSquall
A restaurant web app to save commands of differents food products, show them and modify it also. Similar to a CRUD app
supreettare
Demo MAUI app showcasing local CRUD operations with SQLite and calling an external API to mimic buying a product using REST APIs.
zsharadze
This is ReactJS and ASP.Net Core 7 Web Api products CRUD example project.
Mahrat22
Mini Market Laravel app with product CRUD, search, filter, sort and Bootstrap UI.
mhmdomer
An android app that shows products fetched from the server ( on php ) and perform all CRUD operations for admin users
AmrMagdy00
Product management app built with C# and .NET Core MVC. It supports full CRUD operations on products, with authentication and authorization for Guest, User, and Admin roles. The app follows best practices, using Repository Pattern and DTOs for scalability and maintainability.
Husnain-Ali-dev-02
Gadgetory – A modern full-stack product store app with Node.js, TypeScript, React, Tailwind CSS, and PostgreSQL, showcasing type-safe CRUD, REST APIs, and responsive UI.
yamcodes
A small CRUD app to interact with a list of products. Exists as a testing bed for Bulletproof React, Tanstack Query + Router, json-server, and React Hook Form.