THANK YOU THANK YOU THANK YOU!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!, you are the only person on entire KZbin that has explained it in a proper manner.
@doccuddleup5 ай бұрын
Yehi video 2 hafte pehle miljata bhai…thanks a lot love u
@RevatiPatil-cl8uo6 ай бұрын
bro sounds like tanmay bhat
@webstylepress6 ай бұрын
😅
@oparneshgaming89195 ай бұрын
Riyal
@gekkouga28282 ай бұрын
LMFAO tru
@kunalnature2 ай бұрын
fuck no!
@GirishLawateАй бұрын
😂😂real!!
@haiderh20527 ай бұрын
What if there is no such package.json file in the repository and the read me file dont say anything about how to install independencies, is that mean its a closed source code ? Thanks
@webstylepress7 ай бұрын
The absence of a package.json file in a repository and a lack of installation instructions in the README does not necessarily indicate that the code is closed source. It might suggest that the repository doesn't rely on Node.js packages, or it could be that the authors did not include dependency management files or installation instructions. Is it a nodejs, reactjs project? Is there a src folder? Is files extension js? Are there html files in it?
@syedfaizan53945 ай бұрын
Thank you soo much, for making this very helpful video for beginners like us
@cryptobowzermining73312 күн бұрын
Great Video bro!
@talaakashkari97439 ай бұрын
I’m working on a python language what can I write instead of npm?
@Santhanam-sn3mh8 ай бұрын
Same question here, did u found the answer?
@kinglegitto184810 ай бұрын
Finally, some good food.
@mikesam49515 күн бұрын
Thank you ;)
@raoufdjema2 ай бұрын
hi, i'm trying to use this for "City3D: Large-scale Building Reconstruction from Airborne LiDAR Point Clouds" but can't find a .js file... how can i run the project ?
@nicvalch44538 ай бұрын
thanks bro! love from turkey to india.
@SAnshikaRai7 ай бұрын
Heyy have you run the project in vs or not
@ultimate0nlineshop8 күн бұрын
Yes clone is bettter help the community i learn it the hard way
@himanshubhatt94586 ай бұрын
Bro has turned on the bass mode😂
@skshahilakhtar8953 ай бұрын
Simple n clear explanation.. thankyou sir
@LevisDavid-wf6is17 күн бұрын
can you create video on how to deploy /rejetto/hfs on vercel
@webstylepress14 күн бұрын
For ppl who dont know rejetto and hfs: /rejetto/hfs refers to "HTTP File Server" (HFS) created by Rejetto. It is a lightweight file server that allows users to easily share files over HTTP. It is typically used to serve files from a Windows machine, where users can upload or download files via a web interface. HFS is known for its simplicity and ability to create a file-sharing server with minimal configuration. Answer: Deploying HFS on Vercel isn't straightforward because HFS is a Windows-based application and Vercel is designed for deploying web applications built with frameworks like Next.js, Node.js, or other JavaScript/TypeScript-based projects. To make HFS run on Vercel, you would need to: - Convert HFS functionality into a web-compatible server script (e.g., using Node.js). - Set up file handling and serve static files in a way compatible with Vercel's serverless functions. - Deploy the converted solution as a serverless function on Vercel. Deploying the original Windows-based HFS directly on Vercel isn't feasible due to compatibility issues.
@angelagutaya45 ай бұрын
Can you show me how for a specific github project?
@vefao32106 ай бұрын
Clear instructions. Thanx.
@bhargavikotni62146 ай бұрын
at 5:47 sec there are some errors like 21 vulnerabilities and npm audit fix are more how you fixed that, same issue happened in my case too but i don't know how to fix that
@webstylepress6 ай бұрын
use comman npm audit fix to fix the vulnerabilities. For vulnerabilities that npm audit fix cannot resolve automatically, you may need to update the dependencies manually. Check the npm audit report for the suggested actions. You might have to upgrade to newer versions of some packages, which could involve breaking changes. You can use npm audit fix --force This command will make dependency changes that might include major version upgrades, potentially introducing breaking changes. Use this only if you understand the implications. Best to take project backup first. If a dependency is no longer maintained or frequently has security issues, consider switching to a more secure and actively maintained alternative. Once you've made the necessary changes and ensured the application is stable, commit these changes to your Git repository.
@intellectjunky57193 сағат бұрын
thank you🙏🏾
@princeabadi28897 ай бұрын
Sir i get an error: it says ‘read scripts 5:56 ’ is not recognized as an internal or external command, operable program or batch file
@webstylepress7 ай бұрын
make sure there is no typo / type mistake. I need more details on what you were doing and which command result in this error!
@anjubhalke41546 ай бұрын
Hello sir Npm install and npm i command exceution are not working Getting command not found message How to fix it ?
@webstylepress6 ай бұрын
npm is package manager that comes with node js. Please install nodejs in pc and then run npm install or npm i command inside the folder that has package.json file. Install node js first. search node js in google. Also before you use npm install command, make sure you are inside project folder. To do that by using 'git for windows program' right click in folder and select 'git bash' here. Let em know if you have still any issue.
@Mrsheeesh4 ай бұрын
Alomost does it but when I run :npm start" it shows error, how do I fix it?
@alibennas85346 ай бұрын
Thanks a lot
@srb5704Ай бұрын
Is it same for any full stack mern project
@519aadil311 ай бұрын
You are so awesome thankyou
@anmolbatra20056 ай бұрын
Can you tell if we haven't SSH link and only have HTTPS and GitHub CLI then how we make clone ??
@webstylepress6 ай бұрын
To clone a repository from GitHub using HTTPS when you don't have an SSH link you can use https link you can do git clone https-link with GitHub CLI you can try gh repo clone repository-path
@alekrop98235 ай бұрын
THANK YOU, YOU ARE THE BEST!
@BrysonJohnson-yl8ns5 ай бұрын
Oh stop. If this is a good tutorial, I wouldn't be stuck not understanding how to SIMPLY download an SDK for jMonkeyEngine. That's all I want to do, so I can start a game project in the future on java. But the garbage website interface and these vague instructions are holding me back
@gamiensrule8 ай бұрын
Wonderful.
@pit73985 ай бұрын
you are amazing , thank you !
@raihatufail5 ай бұрын
when i run npm install , it is giving errors, i used the ebook management system project which is a java web project and it has a json file but still gives errors
@webstylepress5 ай бұрын
It sounds like there might be a misunderstanding with the project setup. The eBook management system you mentioned is a Java web project, and typically, such projects don't require npm install as that command is used for Node.js projects, not Java. The presence of a JSON file does not necessarily mean that Node.js is involved. Please double-check the project's documentation for the correct setup instructions. If it's indeed a Node.js project, ensure that your Node.js and npm versions are compatible with the project's requirements. If you continue to face issues, could you please share the exact error messages you are getting? This will help in diagnosing the problem more effectively.
@joeblack4407 ай бұрын
Briliant ❤
@abraradnan8546 ай бұрын
some projects did not have green button ( code button) how can I download it ?
@webstylepress6 ай бұрын
name the github repo that you want to download code from?
@hardin13066 ай бұрын
do i have to install react on my pc before starting the application
@webstylepress6 ай бұрын
react is not installed. To run react project you need to install nodejs. nodejs comes with npm. using npm you can give commands. in terminal you can give commands to install packages and then run react app after packages (node modules) installation. in package.json file present in react application you will find command to run react app.
@talaakashkari97439 ай бұрын
What is the norm it’s not working with me please any help?
@talaakashkari97439 ай бұрын
Npm** sorry
@faizaahmad3144 ай бұрын
Thank you so much, if there is database as well than how to setup that database please please if anyone knows guide me I want that urgently
@zohebansari64293 ай бұрын
U got answer ?? Plz reply man
@webstylepress3 ай бұрын
Here's a general guide on how to set up a database for a project downloaded from GitHub: - Check for Database Files: Look for any SQL files or database setup instructions in the project repository. These are usually found in a `database` folder, or sometimes mentioned in the `README.md` file. - Create a Database: Access your database management system (such as MySQL, PostgreSQL, etc.) and create a new database for the project. - Import the SQL File: If there is an SQL file provided, import it into your newly created database. This can usually be done using a tool like phpMyAdmin, or through the command line. - Configure Database Connection: Update the project's configuration files with your database connection details. This often involves editing a file like `config.php`, `.env`, or similar, and entering your database name, username, password, and host. - Run Database Migrations: Some projects use migration tools to set up the database schema. Check the documentation for any commands you need to run. - Check Documentation: Always refer to the project's `README.md` or any documentation provided. There may be specific steps or additional configuration required for that particular project. If you have specific details about the project, please share them, and I can provide more targeted guidance.
@webstylepress3 ай бұрын
replied
@DennisMartin-y3n6 ай бұрын
Great work thank you
@abdelbel74279 ай бұрын
how to install python project from github plz
@Santhanam-sn3mh8 ай бұрын
Same question here, did u found the answer?
@tecg80Ай бұрын
Bro did you find answers
@mostafaking41021 күн бұрын
How to make build from codes on Android?
@revanthgourishetti351410 ай бұрын
What about next js
@drderp045 ай бұрын
I dont get the "Git Bash" in the context menu. How do I fix that?
@webstylepress5 ай бұрын
okay - its the 'git for windows'. Please search 'git for windows' if you are using windows and install it. Its terminal for windows os. command prompt replacement. You can also use command prompt or better power shell that are in windows operating system but 'git for windows' is easy to work with. It adds 'git bash' in context menu.
@drderp045 ай бұрын
@@webstylepress yes I did install git for windows. But I never got the Git Bash in my context menu when I right click inside the file explorer
@VarunSingh-po6ctАй бұрын
@@drderp04 ctrl + shift + right click
@Animelover-oo7cz6 ай бұрын
thank u sooooooo much🌷 you aare the best
@randonfhing28332 ай бұрын
im aint prepared 4 that
@brijeshchauhan71956 ай бұрын
it was useful
@jayf4569Ай бұрын
What about using python
@_IamHarsh5 ай бұрын
helpful sir
@Kaiman3d5 ай бұрын
so i can only run project with git?
@webstylepress5 ай бұрын
Depends. You don't necessarily need Git to run a project from GitHub. You can download the project as a ZIP file directly from GitHub's website. Just go to the project's repository page, click on the 'Code' button, and then select 'Download ZIP'. Once downloaded, you can extract the files and run the project according to its documentation. Git is mainly used for version control and contributes to a smoother workflow, especially when you need to update or contribute to the project.
@bluewillowjiankaameilu91848 ай бұрын
how to enable repositories please bro
@sandeepp132 ай бұрын
thanks
@iamnoob573Ай бұрын
bro I just wanted my commander keen for gba 😭😭😭🙏🙏🙏
@KeerthisreeKs4 ай бұрын
Its not working npm start command at last
@kunalpal20273 ай бұрын
yeah same
@cryptobowzermining73312 күн бұрын
☺
@umuhirejaqueline9279 ай бұрын
😊😊😊😊😊😊
@PriyaSharma-sz1fj7 ай бұрын
Npm shows error
@webstylepress7 ай бұрын
error detail?
@Gül-lalezar7 ай бұрын
I named react projects in my folder error projects😂.
@aryanthakur26575 ай бұрын
When I type npm start it gives error in browser (this site can't be reached)
@webstylepress5 ай бұрын
are you trying to run react js project? is it javascript based project? need more details on this...
@bhavyasrivadapalli2265 ай бұрын
Sir I have run the same project that you have run but still it shows like localhist is not supporter@@webstylepress
@bhavyasrivadapalli2265 ай бұрын
Sir I have run the same project as you did and I have followed the same procedure but still it shows like cant reached. Could you please explain what should I do@@webstylepress