Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/terdelyi/frontend-starter
Simple starter for front-end projects with Laravel Mix and Tailwind CSS pre-installed
https://github.com/terdelyi/frontend-starter
front-end starter-kit
Last synced: 6 days ago
JSON representation
Simple starter for front-end projects with Laravel Mix and Tailwind CSS pre-installed
- Host: GitHub
- URL: https://github.com/terdelyi/frontend-starter
- Owner: terdelyi
- License: mit
- Created: 2019-10-04T08:07:58.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2023-01-06T02:33:22.000Z (about 2 years ago)
- Last Synced: 2024-11-09T17:25:07.793Z (2 months ago)
- Topics: front-end, starter-kit
- Language: JavaScript
- Homepage:
- Size: 1.15 MB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 19
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Front-end Project Starter Kit
### What's this?
It's a simple starter kit for my front-end based projects.
### What's included?
- Laravel Mix
- Tailwind CSS### How to use it?
1. Clone the repo
2. Run `npm install` then `npm run dev`or add this function to your bash profile and use `frontstart `:
```bash
function frontstart {
git clone --depth 1 --branch master [email protected]:terdelyi/frontend-starter.git $1 && cd $1 && rm -rf .git && npm install && npm run dev
}
```The script will deploy the repo, removes .git directory, installs npm packages and runs the dev action to compile the Laravel Mix script.
Open `/public/index.html` in a browser. If you see a text centered horizontally and vertically on the page with colour you're done.
### Can I use it for my project?
Yes of course, this is why it's here.
### Contributions
Bugfixes in the current code are gladly welcome, but I'm going to decline any pull requests which contain additional feature requests as this package made for private purposes.