Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/betocantu93/modern-ember-fastboot
https://github.com/betocantu93/modern-ember-fastboot
Last synced: 2 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/betocantu93/modern-ember-fastboot
- Owner: betocantu93
- Created: 2019-03-04T06:07:38.000Z (almost 6 years ago)
- Default Branch: master
- Last Pushed: 2022-12-09T14:34:26.000Z (about 2 years ago)
- Last Synced: 2024-10-13T05:28:16.874Z (3 months ago)
- Language: JavaScript
- Homepage:
- Size: 1.55 MB
- Stars: 3
- Watchers: 1
- Forks: 1
- Open Issues: 26
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# modern-ember-fastboot
This app features modern ember:
- No JQuery
- No Ember Data (you can add it if you want it)
- Native es6 classes and decorators via ember-decorators
- ember-fetch
- SSR with fastboot (using a middleware we only run SSR if we detect any bot 🤖 for SEO and OG tags 🔥)
- Sass css preprocessor via ember-cli-sass
- Tailwind via ember-cli-tailwind (using ember-cli-postcss with the plugins autoprefixer and @fullhuman/postcss-purgecss)
- Web Manifest via ember-web-appAnd a couple of extra handy addons, files and configuration
- ember-cli-bundle-analyzer (check your bundle size)
- ember-auto-import (import npm packages easily)
- ember-get-config (get env variables easily everywhere)
- /nodeServer.js and /Procfile for heroky deployment, you can delete these if you prefer to deploy elsewhere
- ember features enabled/disabled
```
{
"application-template-wrapper": false,
"jquery-integration": false,
"template-only-glimmer-components": true
}
```You probably will need to run the blueprint for ember-cli-tailwind... `ember install ember-cli-tailwind` or `ember generate ember-cli-tailwind`