https://github.com/vaibhav-xp/vanilla-javascript-projects
This repo has purely javascript project for newbies.
https://github.com/vaibhav-xp/vanilla-javascript-projects
css3 hactoberfest hactoberfest-accepted hactoberfest2022 html-css-javascript html5 javacript
Last synced: 13 days ago
JSON representation
This repo has purely javascript project for newbies.
- Host: GitHub
- URL: https://github.com/vaibhav-xp/vanilla-javascript-projects
- Owner: vaibhav-xp
- Created: 2022-10-19T04:00:37.000Z (over 2 years ago)
- Default Branch: master
- Last Pushed: 2023-07-26T04:31:34.000Z (almost 2 years ago)
- Last Synced: 2025-04-04T01:01:39.563Z (about 2 months ago)
- Topics: css3, hactoberfest, hactoberfest-accepted, hactoberfest2022, html-css-javascript, html5, javacript
- Language: HTML
- Homepage:
- Size: 34.7 MB
- Stars: 3
- Watchers: 1
- Forks: 7
- Open Issues: 4
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
#
[Contribute To This Project](https://ayush-dixit-15.github.io/Food-delivery-webisite/)




# How to contribute:This project aims to simplify and guide the way beginners make their first contribution. If you are looking to make your first contribution, follow the steps below.
#### If you don't have git on your machine, [install it](https://help.github.com/articles/set-up-git/).
## Step 1 :- Add your name
Add your name to contributors.md file.
## Step 2 :- Fork this repository
Fork this repository by clicking on the fork button on the top of this page.
This will create a copy of this repository in your account.## Step 3 :- Clone the repository
Now clone the forked repository to your machine. Go to your GitHub account, open the forked repository, click on the code button and then click the _copy to clipboard_ icon.
Open a terminal and run the following git command:
```
git clone "url you just copied"
```where "url you just copied" (without the quotation marks) is the url to this repository (your fork of this project). See the previous steps to obtain the url.
For example:
```
git clone https://github.com/this-is-you/first-contributions.git
```where `this-is-you` is your GitHub username. Here you're copying the contents of the first-contributions repository on GitHub to your computer.
## Step 4 :- Create a branch
Change to the repository directory on your computer (if you are not already there):
```
cd first-contributions
```Now create a branch using the `git switch` command:
```
git switch -c your-new-branch-name
```For example:
```
git switch -c add-alonzo-church
```## Step 5 :- Make necessary changes and commit those changes
Now open `Contributors.md` file in a text editor, add your name to it. Don't add it at the beginning or end of the file. Put it anywhere in between. Now, save the file.
If you go to the project directory and execute the command `git status`, you'll see there are changes.
Add those changes to the branch you just created using the `git add` command:
```
git add Contributors.md
```Now commit those changes using the `git commit` command:
```
git commit -m "Add your-name to Contributors list"
```replacing `your-name` with your name.
## Step 6 :- Push changes to GitHub
Push your changes using the command `git push`:
```
git push origin -u your-branch-name
```replacing `your-branch-name` with the name of the branch you created earlier.
If you get any errors while pushing, click here:
- ### Authentication Error
remote: Support for password authentication was removed on August 13, 2021. Please use a personal access token instead.
remote: Please see https://github.blog/2020-12-15-token-authentication-requirements-for-git-operations/ for more information.
fatal: Authentication failed for 'https://github.com//first-contributions.git/'
Go to [GitHub's tutorial](https://docs.github.com/en/authentication/connecting-to-github-with-ssh/adding-a-new-ssh-key-to-your-github-account) on generating and configuring an SSH key to your account.## Step 7:- Submit your changes for review
If you go to your repository on GitHub, you'll see a `Compare & pull request` button. Click on that button.
## Step 8:- Now submit the pull request.
Soon I'll be merging all your changes into the main branch of this project. You will get a notification email once the changes have been merged.
## What really is Vanilla JavaScript?
Vanilla is when something does not have any special or extra features; it is ordinary , pure or standard.
Vanilla script is the word used to describe pure JavaScript that does not include any other libraries. It is one of the lightest weight frameworks ever.Both learning and using it are really simple and easy.
The vanilla script can be used to develop major and impactful applications as well as websites.
### Why should you learn vanilla JS as a beginner?
* You won't regret spending your valuable time learning Vanilla JavaScript.Not only does it contains the word vanilla, but it will have a beneficial impact on programming skills.
* If you research the term “vanilla JavaScript”, you might run into some confusion; however, all you need to know is that vanilla JavaScript is used to refer to the native, standards-based, non-extended version.
* There is no difference between vanilla JavaScript and JavaScript, it’s just there to emphasize the usage of plain JavaScript without the use of libraries and frameworks.* Compared to many other programming languages, JavaScript offers one of the more beginner-friendly entry points into the world of coding.
* The great thing about it is that it comes installed on every modern web browser—there’s no need to set up any kind of development environment, which means you can start coding with JavaScript right away!## Contributing
To contribute to the program collection, fork the repository, create a new branch and send us a pull request. Make sure you read [CONTRIBUTING.md](https://github.com/vaibhav-xt/Vanilla-Javascript-Projects/blob/master/.github/CONTRIBUTING.md) before sending us Pull requests.
### Special thanks to all the contributors✨
[](https://github.com/vaibhav-xt/Vanilla-Javascript-Projects/graphs/contributors)
## Rules
1. For PRs to be counted into your participation in Hacktoberfest, they must be merged between October 1st and October 31st.
2. Contributions must be made to public repositories.
3. If a PR has a label that contains the word spam in it, the PR will not be counted. Also, if a participant has 2 or more spam PRs, they'll be disqualified from Hacktoberfest.
4. If a PR has a label that contains the word invalid, it will not be counted. The exception for this is if the PR also has the label hacktoberfest-accepted.
#### **Read the official hacktoberfest guidelines:**👇🏻👇🏻👇🏻
[https://hacktoberfest.com/participation/#pr-mr-details](https://hacktoberfest.com/participation/#pr-mr-details)
[https://hacktoberfest.com/participation/#spam](https://hacktoberfest.com/participation/#spam)