"if you're a beginner, dont worry about folder structure too much, you're gonna write garbage code anyways" LMAOOOOO
@PedroTechnologies3 жыл бұрын
Hahaha I still remember my first nodejs / express project. I wrote a whole API for a social media platform in a single file :)
@gerooq3 жыл бұрын
@@PedroTechnologies damn hahaha, great video though, i think i'll do a mix of all 3 types that you showed for my project
@CodingByAmp3 жыл бұрын
sam
@LordVodka3133 жыл бұрын
This right here is an absolute truth. My first expressJs app was a single line with an accumulation of all that I learnt as I went. Now I can't even look at it without my eyes bleeding. One thing that is underrated/not emphasized enough is that the first version of any app is the TRUE process of requirement gathering/skill proficiency: that's where you really close the gap between the things _you know that know_ and the things _you don't know that you don't know_
@henriqueb56372 жыл бұрын
Not necessarily. There are beginners who write cleaner code than most experienced developers. It depends on the teacher and/or learning material source
@yankarlotexeira3 жыл бұрын
For advance mode: I suggest adding a repositories folder, where it handles the database operations, and letting the services just handling the business logic. It makes it easier to migrate to another database.
@florianfanderl66743 жыл бұрын
How often did you migrate to another database? I hear this argument so often, but I havent changed the database once, nor has anybody I know.
@yankarlotexeira3 жыл бұрын
@@florianfanderl6674 , I got your point, but I saw this twice, and the last one has been very smooth due to this practice. Moreover, It doesn´t hurt to implement it just in case. Anyway, keep the risk matrix chart in mind based on the requirements.
@florianfanderl66743 жыл бұрын
@@yankarlotexeira well at least you had that case. First time I hear somebody actually did that. I tend to get VERY cautious, if people put things into code they don't need more, but might need later. Also later never arrives. Add 15 of such things and you for a mess. E.g. there's also the habit of putting 100 random things into application config that actually don't change, just because they seem to belong into the application config. Even worse when they're actually not really supported to change. There are so many ways to make software generic and it really helps when this piece of software actually needs to be generic for a real need. But I heavily advise against it, just for the "what if". But yeah, data access in general isn't too hard to abstract. So it doesn't introduce a lot of complexity.
@chesswithsarang2 жыл бұрын
hey, In my code I am using mySQL queries inside APIs. So according to you I should have repository folder containing a file with query?
@yankarlotexeira2 жыл бұрын
@@chesswithsarang yes. It makes easier to isolate problems, easier to do unit tests, and in my opinion it would make the code cleaner and more maintainable.
@jacobtb110 ай бұрын
It's amazing how difficult finding information on this topic has been. Thanks.
@Omer-jb2io3 жыл бұрын
Finally, I couldn't find anyone that actually explained it.
@nazrulchowdhury10473 жыл бұрын
A separate data layer could also be added in the advanced section. This layer will interact with db and could be imported in the service layer to be used as a database adaptor. Then in case of a db swap, just the adaptor has to be re-implemented without even touching the rest of the application.
@PedroTechnologies3 жыл бұрын
Good point!
@nagwarg2 жыл бұрын
Obrigado Pedro! Your videos have been helping me a lot in getting back into web dev after a few months break. You're the man! Can you point out any public repos for advanced projects that use a similar stack and structure? I think that would really help connect all the dots if we could see something simmilar implemented in a mature project. Cheers! Keep it up on being awsome!
@herickvinicius3 жыл бұрын
QUE MASSA! Eu tinha essa curiosidade desde que comecei a desenvolver APIs e finalmente achei um conteúdo massa sobre isso! Parabéns mano! (Mais legal ainda é ter assistido o video inteiro achando que era de algum americano e no final descobrir que é um brazuca hahahah)
@PedroTechnologies3 жыл бұрын
Kkkkkkkk muita gente nao percebe até ler meu nome. Fico feliz que gostou do video :)
@greykor1403 жыл бұрын
Didn't know there was a video on this LOL. Ended up watching one of your tutorial series video to see how things were structured!
@PedroTechnologies3 жыл бұрын
Hahaha hope you liked it :)
@idevbrandon3 жыл бұрын
Thank you Pedro this is what i needed for my project :)
@chanelym3 жыл бұрын
Hi Pedro, thanks for sharing it. I was going really crazy about folder structure and in the end you make very clear that there's more about it than meets the eye.
@RrR20102 жыл бұрын
Ganhou mais um inscrito. Estou em busca de vídeos mais avançados assim já faz algum tempo. A maioria dos vídeos são bem "Getting Started" e não mostram as melhores práticas que podem facilitar na escalabilidade dos projetos. Obrigado!!!
@vieiratn4 жыл бұрын
Amazing content, dude! I'm trying to improve my code and you're helping me a lot. Really appreciated! :)
@PedroTechnologies4 жыл бұрын
Thats awesome! I am glad you are learning!
@vieiratn4 жыл бұрын
@@PedroTechnologies TMJ!
@MrMonishSoni2 жыл бұрын
In advanced level : I like separation of api versioning api/v1, api/v2 but its debatable for versioning vs subdomain. Rather than that i prefer app folder containing MVC + index.ts (entry point) Initially and if the project scales then separation based on component/functionality i.e lets say we've 3 comp. user, product, order. so each comp. have their own MVC, rest is same. What do you think ?
@aayushtaneja703 жыл бұрын
We can keep the Models and Helpers out of the api/v1 folder because the database models do not depend on the version of API. Also, the utils/helpers also don't change I guess.
@failist95704 жыл бұрын
Thanks Pedro for this. Please make more content on production grade setup and practices.
@PedroTechnologies4 жыл бұрын
I really enjoyed the support on this video so I plan on making more like this!
@saurabhjdas7862 жыл бұрын
I like how the beginner folder structure had PascalCase for the folder names, kinda like class names lol. Great video, very informative!
@jojojawjaw3 жыл бұрын
What a great tutorial! concise, yet really informative!
@PedroTechnologies3 жыл бұрын
Glad you liked it
@Landon_Hughes3 жыл бұрын
Great tutorial man! I'm just getting into React so this was helpful :)
@PedroTechnologies3 жыл бұрын
Glad it helped!
@MiladAKareem2 жыл бұрын
This video was very beneficial for me thanks a lot for such a good video, this kind of video is a need for the KZbin community. wish you the best.
@rodcurvelo40753 жыл бұрын
Muito bacana Pedro! Vc foi direto ao ponto. Espero que você faça um video de um projeto com essa estrutura avançada de pastas, junto com REACT, usando talvez o PERN stack e usando o TDD. Já me inscrevi. Quero passar pra senior e ter modelos como inspiração para futuros projetos.
@rayvincentdelacruz82514 жыл бұрын
Great bro! This is an excellent content we need. Keep it up!
@PedroTechnologies4 жыл бұрын
Really appreciate it! I am happy you liked it!
@MarioLariosOfficial2 жыл бұрын
Thanks for this video it helped so much man, especially right now in my bootcamp.
@vishwajitbhagat95152 жыл бұрын
That's all that I needed. Thanks, buddy
@shubhamjha14733 жыл бұрын
Short and precise. Best combo 👍
@PedroTechnologies3 жыл бұрын
Glad you think so!
@BarakAlmog3 жыл бұрын
Beautiful! Exactly what I was looking for. Thanks so much.
@nickjunes2 жыл бұрын
I'm a programmer of 20 years and I've been strongly questioning MVC lately especially on the backend. Mainly there is a lot more logic that needs to be shared. It's obvious services needed to be invented because it couldn't all be contained in the controller level, but it's still not good enough. The model layer is also outdated. It's just a thin layer to the DB so it shouldn't be given so much weight. Applications are no longer desktop apps that save data on a hardrive. We have lots of logic that needs to be shared between lots of services and controllers. We probably need something that is more along the lines of (Routes) | (Controllers) | (Logic -> Components -> Small Functions, External API Calls and Models). Top level in () and -> is nested. Logic is where the business logic is and it may call other peer elements at times. Components would only ever call lower in the tree.
@katalystcod2 Жыл бұрын
so what do you propose? give a concrete example with file structure and logic?
@nickjunes Жыл бұрын
@@katalystcod2Lately I have, Routes, Controllers, Services, and Utilities. I don't personally use a database folder because I always an ORM and database access doesn't require any complex connection logic. That's on the backend. If we're talking about the front end then a lot of people are using projects like Next.js where the routes are actually defined by the file location, then you might have a global Context folder where your "model" is but you don't call it that. Then you may also have "hooks" and "components" folders for re-usable logic. My main point is that on both the backend and the front end it makes more sense to organize things by what we actually need and what we're actually doing and that's how most modern projects are organized. Having an actual "model", "view", and "controller" folder isn't always necessary. It's more a general concept. Although I do use a controller folder on the backend. On the front end a "controller" folder isn't really necessary.
@guilhermejoviniano43522 жыл бұрын
thanks for the video dude!, really good content!
@ThColinPereira3 жыл бұрын
this is so well explained, thanks pedro
@mitejmadan86722 жыл бұрын
Thanks for creating this video. Really helped a lot
@pranjalwalia38104 жыл бұрын
Great stuff..Kudos on the intro... testing express n mongo APIs TS with jest... something to cover in the next video?
@PedroTechnologies4 жыл бұрын
Thank you! I am planning on doing a video on API testing!
@dawid_dahl4 жыл бұрын
Seconded! Jest/supertest. Also a video on mocking best practices would be awesome.
@Pawii3 жыл бұрын
Thank you for sharing your knowledge! really great stuff!!!
@PedroTechnologies3 жыл бұрын
Glad you liked it!
@theDanielJLewis2 жыл бұрын
Thank you for this great overview!
@sreekumarmenon3 жыл бұрын
Informative ! Folder structure + some code would have been more useeful ~
@rokeebashobiye12423 жыл бұрын
This is a great one dude.. Can you make a tutorial using the advanced folder structure for a project?
@nazdumanskyy Жыл бұрын
This was very helpful thank you!
@laviray5447 Жыл бұрын
What I personally prefer is creating separate folder for each function/component like Auth, user, pages, etc.
@mansilaad20624 жыл бұрын
Really appreciating content 👍👍 Plz make video on mvc model which u talked about.
@PedroTechnologies4 жыл бұрын
I plan on it! Thank you!
@ksosaFPV3 жыл бұрын
Great video Pedro thank you!
@PedroTechnologies3 жыл бұрын
Glad you liked it!
@amanbadhan75468 ай бұрын
Hi , hee is the best explanation of folder structure. I have a question. Can you tell me how to manage the folder structure in the case of when are writting code for admin , user and vendor in the same project. Please explain this as well ... Thank you
@zafariqbal92 Жыл бұрын
This is helpful, thank you!
@rammehar55313 жыл бұрын
Very Clean Explanation wonderful
@pankajkhushalani3 жыл бұрын
Amazing content! Thank you for this video
@PedroTechnologies3 жыл бұрын
Glad you liked it!
@wassefbenahmed18013 жыл бұрын
thank you, this was very helpful!
@kunjchoksi3 жыл бұрын
Great informative video. I was a bit confused to start & you have made it clear to me. Thanks
@PedroTechnologies3 жыл бұрын
Glad I was able to help!
@luiza41424 жыл бұрын
Adorei o canal, agora preciso aprender inglês "de vdd" hahaha
@PedroTechnologies4 жыл бұрын
kkkkkkk obrigado mano!
@ratul11252 жыл бұрын
I also like having a "utils" folder where I add all the utility functions
@matthewmarsala17882 жыл бұрын
For the index.ts files. I guess the concept is a bit confusing. Shouldn't it say export since you're exporting the files in those folders so they can accessed elsewhere?
@juanfelipemonsalvevargas6026 ай бұрын
Great video !
@edutech89095 ай бұрын
Thanks Pedro
@adventurer23953 жыл бұрын
Thank you! Why would you do validation in the controller instead of the service? isn’t that business logic?
@inlinex2 жыл бұрын
Question... How Can you call the modules related to controller or you use a Shared Module.? I like Advanced Folder Structure
@ahmedelgaidi2 жыл бұрын
Really good video Thanks a lot
@dawid_dahl4 жыл бұрын
You only mention validation in the controllers. I personally do my validation in a middleware. Does that mean that to divide up my files into controllers and services is unnecessary? Feels like there are more to controllers than validation. If you could shed some more light on controllers/services and how to think about that-if one is using that pattern, I know it is not a must-that would be really helpful. Thank you!
@PedroTechnologies4 жыл бұрын
I have a validation middleware too! I just create the YUP schema in the validations folder!
@dawid_dahl4 жыл бұрын
That doesn’t answer my question, but thank you anyway.
@alexanderzharkov69533 жыл бұрын
I will definitely subscribe to this channel
@PanlasangMotour4 жыл бұрын
Noice !! :) great job
@PedroTechnologies4 жыл бұрын
Thanks! 😄
@robsonreis34504 жыл бұрын
Amazing tips!!!!
@PedroTechnologies4 жыл бұрын
Thank you! Glad you liked it!
@metalshocker932 жыл бұрын
What do we have to put in the index.ts file that you create in the service folder of advance level? Do we need to add something in particular in order to access the classes the way you explained it, by only calling the service folder when we do the import?
@mani_naik4 жыл бұрын
new Intro
@PedroTechnologies4 жыл бұрын
Glad you liked it! Im very happy with the result!
@L4poker4 жыл бұрын
Are you using yarn 2? Could you make a video on package managers, great video btw
@PedroTechnologies4 жыл бұрын
Thank you! Yes I use yarn 2! I can make one but I think both npm and yarn are equally good
@hijuliansosa3 жыл бұрын
It's great, thanks!
@nomchomppom3 жыл бұрын
hey, thanks for the video! would clerify what goes in the "service" folder? would this be someting like getting extra resources from another restAPI or even connecting with another webservice like optimizing photos etc?
@PedroTechnologies3 жыл бұрын
Yes!
@mrinaldhawan39593 жыл бұрын
Thank you pedro for such an amazing video. I had looking for something like this all around. I am now planning to use your intermediate folder structure, as I am fairly new to Nodejs. I have one doubt though, where should I place 3rd Party API Calls? 3rd Party API calls I am integrating will include CRUD operations of their own. Infact, I need to perform CRUD in my database based on success/failure of 3rd party API CRUD operations. Any suggestions will be of great help.
@j9meslloyd810 Жыл бұрын
Great videos. Pls Pedro, can i know the differences between services ans helpers in your project structure
@codesmiles_ Жыл бұрын
I the advanced section of this video, what type of test is the test folder that sit alongside src be running
@anoopjoy5013 жыл бұрын
What are the other popular design patterns? Apart from MVC
@salehmohammednasseralobidi58803 жыл бұрын
Excellent job amazing Can make simple project for this structure to be amazing
@jorgelopezcuns Жыл бұрын
Muy buen video Pedro
@snake1625b3 жыл бұрын
Do you suggest mocking a local database for testing database querying
@otis374410 ай бұрын
People love to say as a beginner dont…. Lmao as a beginner, do because no one cares who long you’ve been coding, they will expect baller level code from you from day 1
@faiqkhan75453 жыл бұрын
I wanna know is that, advance structure is control by only one person ? Or multiple members work on it to maintain it ?
@suhaimitech99733 жыл бұрын
Hi, do you have any project that uses medium or advanced structure? I would like to see what code goes in the folder
@mahardhikaputra Жыл бұрын
src (model controller middleware helper environment router) Always use that schema folder in api what I made
@inaccessiblecardinal93523 жыл бұрын
Good stuff. Those index.ts are conventionally called "barrel files" btw.
@PedroTechnologies3 жыл бұрын
Yes, should have used the conventional name :)
@Jefferson40263 жыл бұрын
would you make a simple real example using this advanced structure? or if you sell it in a course it would be great :(
@skymer74712 жыл бұрын
Shouldn't controllers, services & models be grouped together per "domain" (or entity) api>users>(user.service.ts, user.model.ts, user.controller.ts) ? When the project will grow it will be easier to find what you're searching for
@PanlasangMotour4 жыл бұрын
Next Please Service workers :) PWA = Progressive web applications ;)
@PedroTechnologies4 жыл бұрын
I love PWA's so I can definitely make a video on it!
@khandoor72284 жыл бұрын
How did you make that sweet intro? Pls do a video on that!
@PedroTechnologies4 жыл бұрын
Hahaha I didn’t make it! I paid an awesome person on fiver to make it for me. Trying to improve the video quality!
@khandoor72284 жыл бұрын
@@PedroTechnologies ah gotcha good thinking
@yohanneskindu8794 Жыл бұрын
Guys don't overcomplicate stuff, if you wanna have advanced folder structure, use nest js.
@franciscog.63963 жыл бұрын
Hi Pedro! Nice video. I have a question, how to upload a project with front and back to GitHub? Frontend and Backend in the same repository?
@franciscog.63963 жыл бұрын
In the project, I have the "client" folder (React Native), and the "server" folder (API REST with MySQL).
@PedroTechnologies3 жыл бұрын
I always recommend separating the repositories!
@PedroTechnologies3 жыл бұрын
I would separate the repos and upload the client to the google play store and the server to either aws, zeet, or heroku!
@franciscog.63963 жыл бұрын
@@PedroTechnologies thank you so much bro!
@jpee03163 жыл бұрын
And the validation folder is for? validation for like form inputs?
@wasit-shafi7 ай бұрын
what if we have also have contents in v2 directory, then how will your directory structure change as we also have to make sure we are not repeating the code, eg you have put Helpers inside v1 . any comments on that...?
@mansilaad20623 жыл бұрын
What would be the folder structure for react large project where we call Apis as well as axios request etc..
@PedroTechnologies3 жыл бұрын
I want to make a video on react project structures! But I would create a personalized hook for making api calls!
@sunilkumar-zf4dx3 жыл бұрын
nice video, can you put git links for these folder structures with some boilerplate code.
@PedroTechnologies3 жыл бұрын
This was a long time ago so I don't know if I still have the folder with all of this. But I can defo create one and put the link!
@NewleadersTech4 жыл бұрын
a new begining.
@PedroTechnologies4 жыл бұрын
Yes!!
@NewleadersTech4 жыл бұрын
@@PedroTechnologies best of best supportive content .We are counting on you .Really appreciated.
@DaveTheDeveloper2 жыл бұрын
I don't like that you keep your versions in the repo. I would rather use github and add a commit or some kind of tag where I say that this is the v1 of the api. Then I can easily update to that commit if I need v1. But if I keep it in the repo there is a lot of dead code. On the one hand your approach is more comfortable, but the approach I would use is cleaner imo.
@me_debankan4178 Жыл бұрын
for intermediate express api what will be present in the config folder ?
@chaitany.a3 жыл бұрын
MVC is an architectural patter, not a design pattern
@edu.paixao2 жыл бұрын
Vlw, Pedro
@flouainan11 ай бұрын
Hey bro, can you please tell the name of this VScode icon extension ? Brazilian hug 😎
@mansilaad20624 жыл бұрын
What are different design patterns?
@theaxacall3 жыл бұрын
hey hi I made an api with express. and the pictures are on the same port.. I can access the links of my pictures from a different server, but I can't show the pictures.
@haddadabdallah3 жыл бұрын
Good job
@surajsingh34342 жыл бұрын
@PedroTech Now we have a Clean Architecture. That also needs your attention.
@bestblackpeoplevine79074 жыл бұрын
can you do video on JEST / Testing
@makermaker9525 Жыл бұрын
Can you give me a links for projects that follow intermediate and advanced structure
@felipeserrano91733 жыл бұрын
Nice!
@maxmaksum46734 жыл бұрын
excellent
@PedroTechnologies4 жыл бұрын
Thanks!
@xO_ADX_Ox2 жыл бұрын
Beginner here, I did not understand what it is used for .env =(
@nickjunes2 жыл бұрын
I've worked with a lot of projects that use typescript and don't. With good test coverage typescript really becomes obsolete and development time increases dramatically. As developers we need to always be aware of when a tool was invented just to give developers more to do with their time and when it is actually helpful. Introducing typescript increases the code quantity by 30% and increases the bug surface level by exactly double since every piece of code can now fail at the abstraction level as well. Until types are officially part of JavaScript it's always going to be just another failure point without any real affect on the outcome.-- but real slowdown on developer time.