Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/a11yproject/a11yproject.com
The A11Y Project is a community-driven effort to make digital accessibility easier.
https://github.com/a11yproject/a11yproject.com
a11y accessibility eleventy inclusive-design user-experience
Last synced: 25 days ago
JSON representation
The A11Y Project is a community-driven effort to make digital accessibility easier.
- Host: GitHub
- URL: https://github.com/a11yproject/a11yproject.com
- Owner: a11yproject
- License: apache-2.0
- Created: 2013-01-10T20:39:57.000Z (almost 12 years ago)
- Default Branch: main
- Last Pushed: 2024-03-28T19:03:58.000Z (7 months ago)
- Last Synced: 2024-04-14T02:53:39.766Z (7 months ago)
- Topics: a11y, accessibility, eleventy, inclusive-design, user-experience
- Language: Nunjucks
- Homepage: https://a11yproject.com
- Size: 33.5 MB
- Stars: 3,684
- Watchers: 196
- Forks: 551
- Open Issues: 65
-
Metadata Files:
- Readme: README.md
- Contributing: .github/CONTRIBUTING.md
- Funding: .github/FUNDING.yml
- License: LICENSE-APLv2
- Code of conduct: .github/CODE_OF_CONDUCT.md
- Security: .github/SECURITY.md
- Support: .github/SUPPORT.md
- Authors: AUTHORS
Awesome Lists containing this project
- fucking-awesome-awesomeness - by @a11yproject
- fucking-lists - a11yproject.com
- awesomelist - a11yproject.com
- more-awesome - Accessibility: by @a11yproject - The A11Y Project is a community-driven effort to make digital accessibility easier. (To Sort)
- awesome-techforgood - A11Y - community-driven effort to make web accessibility easier. (Awesome tech for good projects)
- awesome - a11yproject/a11yproject.com - The A11Y Project is a community-driven effort to make digital accessibility easier. (Nunjucks)
- awesome-list - a11yproject.com - driven effort to make digital accessibility easier. | a11yproject | 3401 | (Nunjucks)
- lists - a11yproject.com
- awesome-awesomeness - by @a11yproject
- collection - a11yproject.com
README
![A11Y.](https://github.com/a11yproject/a11yproject.com/blob/main/src/img/social/og-image-home.png?raw=true)
# The A11Y Project
The Accessibility [(A11Y)](https://a11yproject.com/posts/a11y-and-other-numeronyms/) Project is an Open-source, community-driven effort to make digital accessibility easier.
## Contributing
You can learn about helping this project by reading our [Code of Conduct](https://a11yproject.com/code-of-conduct/), [Contributor documentation](https://a11yproject.com/contributing-guidelines/), and [Content Style Guide](https://a11yproject.com/content-style-guide/). Please familiarize yourself with them before submitting content.
This `README` is focused on the technical side of the project. If you are interested in contributing information like Posts or Resources, please refer to our [Contributing Guidelines](https://a11yproject.com/contributing-guidelines/).
## Development
### Technology
The A11Y Project uses [Eleventy](https://www.11ty.io/) to manage its content. Eleventy relies on [Markdown](https://daringfireball.net/projects/markdown/syntax), [Sass](https://sass-lang.com/), [Nunjucks](https://mozilla.github.io/nunjucks/), and [JSON](https://www.json.org/) to function.
It may be helpful to familiarize yourself with these technologies, depending on what you want to do. For more information, check out our [Contributor documentation](https://a11yproject.com/contributing-guidelines/).
### Requirements
You'll need access to the following programs and technology in order to get the website running on your computer to work on:
1. A command line application such as Terminal.
- If you want to learn more about working in the command line, Wes Bos offers [a great free course](https://commandlinepoweruser.com/).
- If you are using Windows, [Hyper](https://hyper.is/) is a good, free command-line application you can download, install, and run.
1. [Git](https://git-scm.com/) version control and a [GitHub account](https://github.com/).
- You can check to see if Git is already installed on your computer by typing `git --version` into your command line application. If it is installed it will list the currently installed version (e.g. `git version 2.18.0`).
- If you prefer to use a GUI to work with version control, GitHub offers a [free desktop app](https://desktop.github.com).
1. [Node.js](https://nodejs.org/en/), a programming environment powered by JavaScript.
- You can check to see if Node.js is already installed on your computer by typing `node -v` into your command line application. If it is installed it will list the currently installed version (e.g. `v16.4.0`). The A11Y Project requires a minimum version of `16.0.0`.
- It may also be helpful to use a program such as [nvm](https://github.com/creationix/nvm) to help manage your Node.js versions. This will ensure that the version of Node.js your computer uses to run various things won't conflict with an updated version. For Windows users, you could use [coreybutler/nvm-windows](https://github.com/coreybutler/nvm-windows).### Installation
Once you have met [the prerequisites](#requirements), follow these steps to install the website on your computer:
1. Clone this repository by entering this command into your command line application: `git clone https://github.com/a11yproject/a11yproject.com.git`. It will create a version-controlled copy of the website in the directory you entered the command in.
1. Navigate into the project's [root directory](https://en.m.wikipedia.org/wiki/Root_directory) by typing `cd a11yproject.com` in your command line application.
1. Install the project's Node.js modules by typing `npm install` into your command line application. A list of these modules should be displayed after they are downloaded and installed.### Running the website
After cloning and installing project Node.js modules, you will need to tell Node.js to compile the project and turn it into a website. To do this:
- **macOS and Linux:** Type `npm start` into your command line application.
- **Windows:** Type `npm run eleventy-watch & npm run gulp-watch` into your command line application.Your command line application will then display some information about Eleventy, including a line that starts with `Local:`. You can copy the URL it points to (it should read something like [`http://localhost:3000`](http://localhost:3000)) and paste it into a browser tab. This will load a local copy of the website that you can interact with to preview your changes.
You can also use the `External` URL to preview the local copy on another device connected to the same network, which helps you check to see how the site looks and functions on things like smartphones. This is done via [Browsersync](https://www.browsersync.io/).
### Updating the website
Saving project files will make Node.js regenerate the website to reflect the changes you made. Your command line application will display some new messaging to reflect this, including any errors you might accidentally make. Don't worry! Since the site uses version control, you're not in danger of seriously breaking anything. If you fix the error, Node.js should continue to run.
Make sure you edit the files in the `src/` subdirectory. Any edits made in the `dist` subdirectory will be overwritten by the next change to any file in `src/` and all your hard work will be lost!
### Quitting
You can tell Node.js to stop running by pressing the Control and C keys at the same time in your command line application, or by closing the command line application window or tab.
### Code Tour
If you use [Visual Studio Code](https://code.visualstudio.com/) as your code editor, you can take an introductory tour of the repository via the [CodeTour extension](https://marketplace.visualstudio.com/items?itemName=vsls-contrib.codetour).
## Troubleshooting
Please refer to our [Troubleshooting documentation](https://github.com/a11yproject/a11yproject.com/blob/main/TROUBLESHOOTING.md) for help with issues running the site.