Build JavaScript ECommerce Website Like Amazon For Beginners [2022]

Build JavaScript ECommerce Website Like Amazon For Beginners [2022]

Coding with Basir

3 года назад

137,188 Просмотров

Ссылки и html тэги не поддерживаются


Комментарии:

@lastspoil5547
@lastspoil5547 - 18.01.2024 02:41

Is this project enough to prepare us to work in the real world? I know html, css, and JavaScript. I'm also aware I have to learn React next.

Ответить
@sul-dev
@sul-dev - 06.01.2024 11:40

Thank you so much

Ответить
@sul-dev
@sul-dev - 06.01.2024 11:27

So good 👍

Ответить
@BugraBasbostanci
@BugraBasbostanci - 21.12.2023 19:14

If you get a "screen.after_render is not a function TypeError: screen.after_render is not a function at router (webpack://frontend/./src/index.js?:25:16)" error paste this into your index.js
if (screen.after_render) await screen.after_render();

Ответить
@BugraBasbostanci
@BugraBasbostanci - 21.12.2023 00:27

If you get an error at webpack part create webpack.config.js in your "frontend" folder and paste this:

const path = require("path");

module.exports = {
mode: "development",
// Entry point: starting from src/index.js, Webpack will include all dependencies from here
entry: "./src/index.js",

// Output configuration: where to place the bundled output
output: {
filename: "main.js",
path: path.resolve(__dirname),
},

// Configuration for the development server
devServer: {
static: {
directory: path.join(__dirname),
},
compress: true,
port: 9000,
},

module: {
rules: [
// You can add rules for processing different types of files.
// As an example, if you wanted to add Babel for JS transpilation,
// or CSS loaders to process your CSS files, you'd do it here.
],
},
};

Then in package.json use this command: "start": "webpack-dev-server --open",

Ответить
@bonekazz-8441
@bonekazz-8441 - 05.12.2023 14:19

thanks github to recommend your repo for me and thank you for this content <3

Ответить
@kwameegyir6990
@kwameegyir6990 - 17.11.2023 16:02

hi wonderful people I hope you are doing well. please need help i have gotten to the stage 8 of this video. i have gone through all the steps but keep on getting the same error. localhost/:1


Failed to load resource: the server responded with a status of 404 (Not Found). And this is the steps for stage 8: 8. Add Webpack
1. cd fronted
2. npm install -D webpack webpack-cli webpack-dev-server
3. npm uninstall live-server
4. "start": webpack-dev-server --mode development --watch-content-base --open",
5. move index.html, style.scc and images to frontend folder
6. rename app.js to index
7. update index.html
8. add <script src="main.js"></script>before</body>
9. npm start

Ответить
@user-tu4kg6vz8b
@user-tu4kg6vz8b - 04.10.2023 03:49

In the 8th section of this video
{
"name": "frontend",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"start": "webpack-dev-server --watch-content-base --open",
"test": "echo \"Error: no test specified\" && exit 1"
},
"author": "",
"license": "ISC",
"devDependencies": {
"webpack": "^5.88.2",
"webpack-cli": "^5.1.4",
"webpack-dev-server": "^4.15.1"
}
}

shows the

> [email protected] start
> webpack-dev-server --watch-content-base --open

[webpack-cli] Error: Unknown option '--watch-content-base'
[webpack-cli] Run 'webpack --help' to see available commands and options

please resolve this issue

Ответить
@monahewidy3748
@monahewidy3748 - 08.08.2023 23:17

could you activate the subtitle language to the video to understand you well, please?!

Ответить
@xt4157
@xt4157 - 01.08.2023 05:06

Hello Baseer thank you for this course I have a question is the project available to everyone can I make such a project and modify it and display it on the internet please answer

Ответить
@user-rl6yt8ye6k
@user-rl6yt8ye6k - 31.07.2023 23:56

Can I work as I did in the video and modify it and change all the interfaces of the site? Do you agree?

Ответить
@user-om4kr3er8x
@user-om4kr3er8x - 13.07.2023 07:00

What extension have you installed to display HTML in 'template literals' syntax highlighting?

Ответить
@programmingwithali
@programmingwithali - 12.06.2023 18:34

on the Udemy site "Sorry, this course is no longer accepting enrollments." how can i get all videos?

Ответить
@user-oh5xv3oi5c
@user-oh5xv3oi5c - 12.06.2023 17:57

Great video! Im I the only one who thinks im listening to RadioHEAD´s album OK Computer?

Ответить
@programmingwithali
@programmingwithali - 12.06.2023 10:11

thanks for your awesome toturial...

Ответить
@amittiwary5295
@amittiwary5295 - 23.05.2023 08:55

I am unable to get live server please help

Ответить
@vishnunair4789
@vishnunair4789 - 09.05.2023 00:59

I am not able to see the card after deploying data. Js and importing it.... Please help

Ответить
@Andrew-qc8jh
@Andrew-qc8jh - 04.05.2023 05:47

incredible

Ответить
@mohamedazarudeen1594
@mohamedazarudeen1594 - 03.05.2023 10:17

Please add captions for the video please it will be very useful for beginners

Ответить
@user-cx1go4ez2d
@user-cx1go4ez2d - 06.04.2023 20:57

who has problem with connection to mongodb, just delete body of function "connect":
useNewUrlParser , useUnifiedTopology , useFindAndModify , and useCreateIndex are no longer supported options. Mongoose 6 always behaves as if useNewUrlParser , useUnifiedTopology , and useCreateIndex are true , and useFindAndModify is false .

Ответить
@aynoman492
@aynoman492 - 28.01.2023 13:57

> [email protected] start
> webpack-dev-server --watch-content-base --open
[webpack-clil Error: Unknown option '--watch-content-base'
[webpack-clil Run 'webpack --help' to see available commands and options

when I run npm start in the frontend why this showing?

Ответить
@mxd7713
@mxd7713 - 19.01.2023 06:35

hi, can we make a website with html, css, JavaScript that allows sellers can add products, writing product details and delete it themselves

Ответить
@tosanmakpa7587
@tosanmakpa7587 - 03.01.2023 11:03

I really what to appreciate your effort for putting this lesson together, is a great job. But I am having some difficulties with webpack, after installing it from npm and I ran it and it showed error on the browser "cannot GET /", how can fit this? because I tried several means to fit, but still not working. Kind Regards

Ответить
@velsria1
@velsria1 - 25.11.2022 22:16

npm init/install doesn't work

Ответить
@albertaitov8557
@albertaitov8557 - 16.11.2022 06:36

Hello,

I'm excited to start the course, but I have a question, where can I download the program you are using to build the e-commerce in this tutorial? Is it visual studio, or something else ?

Ответить
@abubakarusman2951
@abubakarusman2951 - 06.11.2022 21:47

Sir, my delete button works but one item is always left in the cart

Ответить
@abubakarusman2951
@abubakarusman2951 - 06.11.2022 12:35

Great video Sir, however my cart button on top of the page keeps showing page not found when i click it, but the add to cart button work

Ответить
@tbernardino
@tbernardino - 05.11.2022 17:12

Hi Basir! Thanks for this amazing tutorial!
I'm at part 30 and I got the error:
Uncaught Error: Client ID not found for env: sandbox

I’ve tried many times to connect with paypal (and of course rewrite the code again) but always the same error.
I’ve created my REST Api APP in sandbox with a sandbox business account (US) and copy my Client ID but with no success.
I apriciate any help, thanks in advance.

Ответить
@oxk4r01
@oxk4r01 - 01.11.2022 12:06

How did you get html highlight inside javascript?

Ответить
@Luka_brx
@Luka_brx - 30.10.2022 21:23

Part19
useCreateIndex: true
in setting of mogoose i got "undefind" but when i remoe thise useCreateIndex:true then it says Connected to mongodb. it will be okay to work without it ?
thanks on this project it helped me a lot.

Ответить
@albanustemu7396
@albanustemu7396 - 04.10.2022 19:57

let make it clear, this is not tutorial for beginner! you did good jop but you just doing it instead of teaching
i dont recoment it for any beginer to watch it!

Ответить
@kodye2988
@kodye2988 - 03.10.2022 23:04

in Part 21, my admin sign in is not working. Does anyone have the same issue?

Ответить
@9r33nTrex
@9r33nTrex - 01.10.2022 11:28

First of all, I have to sAY that, it's really amazing! Thank you for your useful lesson. Btw, I have a question to ask: what about the return policy, do you intend to add this function to your web?

Ответить
@morenatirana4539
@morenatirana4539 - 19.09.2022 17:44

I am having an issue with adding the Webpack in part 08.
The terminal says this:

users-MacBook-Pro:mkt user$ cd frontend/
users-MacBook-Pro:frontend user$ npm start

> [email protected] start
> webpack-dev-server --watch-content-base --open

[webpack-cli] Error: Unknown option '--watch-content-base'
[webpack-cli] Run 'webpack --help' to see available commands and options
users-MacBook-Pro:frontend user$

It is not loading the frontend anymore in my localhost.
What should I do?
Please help me.

Ответить
@rajendharreddy2851
@rajendharreddy2851 - 12.09.2022 20:42

How are you able to return the html tags inside HomeScreen file? "It's a js file"

Ответить
@spiderdev5166
@spiderdev5166 - 20.08.2022 04:42

You don't explain anything, you just write code and you comment what you are doing, that's not explain.
7 years of being a tutor and you didn't learn how to teach? Change your method.

Ответить
@shahrukhtemori7502
@shahrukhtemori7502 - 05.08.2022 07:33

Salam Basir jan, kheily zebo, tashakur bisyar ziyad.

Ответить
@valerypobelenskiy1001
@valerypobelenskiy1001 - 04.08.2022 18:58

Hello When I click on a button Sign-in There is an notes PAGE NOT FOUND.... Where can I make a mistake ???

Ответить
@parsa3958
@parsa3958 - 01.08.2022 21:20

Awesome

Ответить
@saqlainraza7041
@saqlainraza7041 - 23.07.2022 10:43

Thanks janinfor thisbcourse

Ответить
@bornofmindghimire5888
@bornofmindghimire5888 - 22.07.2022 13:39

why do we have to include every html code into javascript ?
I'm totally confused.

Ответить
@mukangwakalonda7726
@mukangwakalonda7726 - 21.07.2022 00:48

hi can anyone helpme for this [webpack-cli] Error: Unknown option '--watch-content-base'
[webpack-cli] Run 'webpack --help' to see available commands and options

Ответить
@saqlainraza7041
@saqlainraza7041 - 19.07.2022 14:43

Oh my goodness i cant believe its freee 💛💛💛💕💚💚💚💚💚💚💚💙💚💕💕💕💖💖💜💜💓💓💘💘

Ответить
@hassanayasrah9908
@hassanayasrah9908 - 29.06.2022 10:17

Can I use try and catch throughout the code, including the screen render function, or is it better to use the if statement as shown in the video?

Ответить
@matijarakitic5687
@matijarakitic5687 - 23.06.2022 07:08

Uncaught TypeError: Failed to resolve module specifier "axios". Relative references must start with either "/", "./", or "../".

In part 13, anyone know how to fix it?

Ответить