Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/uvacoder/uva-frontend-tips-4261
https://github.com/uvacoder/uva-frontend-tips-4261
abc ediug guide scripts snippets tips
Last synced: 29 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/uvacoder/uva-frontend-tips-4261
- Owner: Uvacoder
- License: mit
- Created: 2021-11-24T00:35:22.000Z (about 3 years ago)
- Default Branch: main
- Last Pushed: 2022-12-12T17:41:49.000Z (about 2 years ago)
- Last Synced: 2024-11-24T01:49:46.106Z (29 days ago)
- Topics: abc, ediug, guide, scripts, snippets, tips
- Language: HTML
- Homepage: https://uva-frontend-tips-2.vercel.app/
- Size: 12.8 MB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Front-end Tips
A series of super tiny, quick tips, tricks and best practices of front-end development.
The series cover different topics:
- CSS
- HTML
- JavaScript
- TypeScript
- Browser developer tools## Running it on local
1. Clone the project:
```shell
$ git clone https://github.com/1milligram/frontend-tips
```2. Install the dependencies:
```shell
$ cd frontend-tips
$ npm install --legacy-peer-deps
```3. Run it on the local:
```shell
$ npm run dev
```Look at the console to see the _Local URL_. Open it in your browser to see it in action.
## Contributing
Pull requests are welcomed. To submit your favorite tip, please create a markdown file, and put it in the [posts](posts) folder.
The content of markdown file has to look like```md
---
title: ___
category: ___
date: '___'
topics: ___
---The content of post
```- `title`: Must match with the file name
- `category`: Can be one of `tip`, `trick` or `Best practice`
- `date`: The date that post is created
- `topics`: The list of topic(s), separated by a comma[Here](posts/convert-string-to-number.md) is an example.
## About
This project is developed by _Nguyen Huu Phuoc_. I love building products and sharing knowledge.
Be my friend on
- [Twitter](https://twitter.com/nghuuphuoc)
- [dev.to](https://dev.to/phuocng)
- [Github](https://github.com/phuoc-ng)