forked from rmjordas/awesome-vue
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
46 changed files
with
14,376 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
root = true | ||
|
||
[*] | ||
indent_style = space | ||
indent_size = 2 | ||
end_of_line = lf | ||
charset = utf-8 | ||
trim_trailing_whitespace = true | ||
insert_final_newline = true |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,35 @@ | ||
# Contributing Guide | ||
|
||
1. Make sure you put things in the right category! | ||
2. Always add your items to the end of a list. To be fair, the order is first-come-first-serve. | ||
3. If you think something belongs in the wrong category, or think there needs to be a new category, feel free to edit things too. | ||
|
||
## Projects using Vue.js | ||
|
||
Make sure you put things in the right category. There are two main categories: | ||
|
||
- Open Source | ||
- Apps/Websites | ||
|
||
### Open source | ||
|
||
Open Source section gives the possibility for developers to contribute and be a part of an open source project using their knowledge of the Vue.js. | ||
You should put your project in this category if the following conditions are true: | ||
|
||
- The documentation (README) contains a description of the project, illustration of the project with a demo or screenshots and a CONTRIBUTING section. | ||
- The documentation is in English. | ||
- The project is active and maintained. | ||
- The project accepts contributions. | ||
|
||
The link provided should be the link of the GitHub repository, not the demo. | ||
If you consider your project finished, and it does not need any contributions, consider the apps/website category. | ||
|
||
### Apps/Websites | ||
|
||
Apps/Websites gives the opportunity to showcase the awesome things we can build with Vue.js. | ||
You should put your app/website in this category if the following conditions are true: | ||
|
||
- The website is available without errors or SSL certificate problems, and load in a reasonable amount of time. | ||
- The website is using Vue.js intensively. It should detect Vue with [vue-devtools](https://github.com/vuejs/vue-devtools). | ||
- If you cannot detect Vue with `vue-devtools` due to work at non public pages (e.g. for enterprise website), you can send Pull Request with screenshot that detected it. | ||
- The website is original and not too simple. For that reason, blogs and simple landing pages are rejected. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,67 @@ | ||
# Logs | ||
logs | ||
*.log | ||
npm-debug.log* | ||
yarn-debug.log* | ||
yarn-error.log* | ||
|
||
# Runtime data | ||
pids | ||
*.pid | ||
*.seed | ||
*.pid.lock | ||
|
||
# Directory for instrumented libs generated by jscoverage/JSCover | ||
lib-cov | ||
|
||
# Coverage directory used by tools like istanbul | ||
coverage | ||
|
||
# nyc test coverage | ||
.nyc_output | ||
|
||
# Grunt intermediate storage (http://gruntjs.com/creating-plugins#storing-task-files) | ||
.grunt | ||
|
||
# Bower dependency directory (https://bower.io/) | ||
bower_components | ||
|
||
# node-waf configuration | ||
.lock-wscript | ||
|
||
# Compiled binary addons (https://nodejs.org/api/addons.html) | ||
build/Release | ||
|
||
# Dependency directories | ||
node_modules/ | ||
jspm_packages/ | ||
|
||
# TypeScript v1 declaration files | ||
typings/ | ||
|
||
# Optional npm cache directory | ||
.npm | ||
|
||
# Optional eslint cache | ||
.eslintcache | ||
|
||
# Optional REPL history | ||
.node_repl_history | ||
|
||
# Output of 'npm pack' | ||
*.tgz | ||
|
||
# Yarn Integrity file | ||
.yarn-integrity | ||
|
||
# dotenv environment variables file | ||
.env | ||
|
||
# next.js build output | ||
.next | ||
|
||
# vuepress build output | ||
.vuepress/dist | ||
|
||
# Serverless directories | ||
.serverless |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
{ | ||
"default": true, | ||
"MD013": { "line_length": 1000 } | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
language: node_js | ||
|
||
node_js: | ||
- "lts/*" | ||
|
||
cache: | ||
directories: | ||
- "node_modules" | ||
|
||
install: | ||
- npm install | ||
- npm run build | ||
|
||
script: | ||
- npm test | ||
|
||
deploy: | ||
provider: pages | ||
skip-cleanup: true | ||
github-token: $GITHUB_TOKEN | ||
target-branch: gh-pages | ||
keep-history: true | ||
local-dir: .vuepress/dist | ||
on: | ||
branch: master |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,70 @@ | ||
module.exports = { | ||
title: 'Awesome Vue.js', | ||
description: '🎉 A curated list of awesome things related to Vue.js', | ||
head: [ | ||
['link', { rel: 'icon', href: `/logo.png` }], | ||
['link', { rel: 'manifest', href: '/manifest.json' }], | ||
['meta', { name: 'theme-color', content: '#3eaf7c' }], | ||
['meta', { name: 'apple-mobile-web-app-capable', content: 'yes' }], | ||
['meta', { name: 'apple-mobile-web-app-status-bar-style', content: 'black' }], | ||
['link', { rel: 'apple-touch-icon', href: `/icons/apple-touch-icon-152x152.png` }], | ||
['link', { rel: 'mask-icon', href: '/icons/safari-pinned-tab.svg', color: '#3eaf7c' }], | ||
['meta', { name: 'msapplication-TileImage', content: '/icons/msapplication-icon-144x144.png' }], | ||
['meta', { name: 'msapplication-TileColor', content: '#fff' }] | ||
], | ||
serviceWorker: true, | ||
base: '/awesome-vue/', | ||
themeConfig: { | ||
repo: 'rmjordas/awesome-vue', | ||
editLinks: true, | ||
lastUpdated: 'Last Updated', | ||
nav: [], | ||
sidebar: [ | ||
{ | ||
title: 'Resources', | ||
collapsable: false, | ||
children: [ | ||
'/resources/official-resources', | ||
'/resources/external-resources', | ||
'/resources/job-portal', | ||
'/resources/community', | ||
'/resources/conferences', | ||
'/resources/podcasts', | ||
'/resources/youtube-channels', | ||
'/resources/official-examples', | ||
'/resources/tutorials', | ||
'/resources/examples', | ||
'/resources/books', | ||
], | ||
}, | ||
{ | ||
title: 'Projects Using Vue.js', | ||
collapsable: false, | ||
children: [ | ||
'/projects-using-vue-js/open-source', | ||
'/projects-using-vue-js/commercial-products', | ||
'/projects-using-vue-js/apps-websites', | ||
'/projects-using-vue-js/interactive-experiences', | ||
'/projects-using-vue-js/enterprise-usage', | ||
'/projects-using-vue-js/a11y', | ||
], | ||
}, | ||
{ | ||
title: 'Components and Libraries', | ||
collapsable: false, | ||
children: [ | ||
'/components-and-libraries/ui-components', | ||
'/components-and-libraries/ui-layout', | ||
'/components-and-libraries/frameworks', | ||
'/components-and-libraries/ui-utilities', | ||
'/components-and-libraries/utilities', | ||
'/components-and-libraries/integrations', | ||
'/components-and-libraries/dev-tools', | ||
'/components-and-libraries/scaffold', | ||
'/components-and-libraries/runtime', | ||
'/components-and-libraries/prerendering', | ||
], | ||
}, | ||
] | ||
} | ||
}; |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
{ | ||
"name": "Awesome Vue.js", | ||
"short_name": "AwesomeVue", | ||
"icons": [ | ||
{ | ||
"src": "/awesome-vue/icons/android-chrome-192x192.png", | ||
"sizes": "192x192", | ||
"type": "image/png" | ||
}, | ||
{ | ||
"src": "/awesome-vue/icons/android-chrome-512x512.png", | ||
"sizes": "512x512", | ||
"type": "image/png" | ||
} | ||
], | ||
"start_url": "/index.html", | ||
"display": "standalone", | ||
"background_color": "#fff", | ||
"orientation": "portrait", | ||
"theme_color": "#3eaf7c" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
--- | ||
home: true | ||
heroImage: /hero.png | ||
actionText: Get Started → | ||
actionLink: /resources/official-resources | ||
--- |
Oops, something went wrong.