Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/shipengqi/frontend-learn
:books: Frontend learning ...
https://github.com/shipengqi/frontend-learn
angular css css3 html html5 javascript less node nodejs typescript vite vue webpack
Last synced: 5 days ago
JSON representation
:books: Frontend learning ...
- Host: GitHub
- URL: https://github.com/shipengqi/frontend-learn
- Owner: shipengqi
- License: mit
- Created: 2018-05-06T07:26:57.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2024-12-27T10:01:46.000Z (15 days ago)
- Last Synced: 2024-12-30T06:08:20.282Z (12 days ago)
- Topics: angular, css, css3, html, html5, javascript, less, node, nodejs, typescript, vite, vue, webpack
- Language: Shell
- Homepage: https://shipengqi.github.io/frontend-learn
- Size: 10.6 MB
- Stars: 127
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# frontend-learn
Frontend learning ...
## Usage
Initialize project as a Hugo Module using the `hugo mod init` command:
```sh
hugo mod init github.com/shipengqi/frontend-learn
```Adding the [Hextra](https://github.com/imfing/hextra) theme:
```yaml
baseURL: "https://shipengqi.github.io/frontend-learn"
title: "Frontend Learning"module:
imports:
- path: github.com/imfing/hextra
```Start server:
```sh
hugo server -D
```Manually deploy:
```sh
./deploy.sh
```> Any changes in the `content` directory will automatically trigger a deployment.
## Update Theme
To update all Hugo modules in your project to their latest versions, run the following command:
```
hugo mod get -u
```To update Hextra to the latest released version, run the following command:
```
hugo mod get -u github.com/imfing/hextra
```