Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/larsdouweschuitema/workshop-frontend-minor
Workshop Frontend Minor - Frontend Monolith with e2e teams
https://github.com/larsdouweschuitema/workshop-frontend-minor
css html javascript scss vue webpack yarn
Last synced: 14 days ago
JSON representation
Workshop Frontend Minor - Frontend Monolith with e2e teams
- Host: GitHub
- URL: https://github.com/larsdouweschuitema/workshop-frontend-minor
- Owner: larsdouweschuitema
- License: mit
- Created: 2020-02-10T18:22:58.000Z (almost 5 years ago)
- Default Branch: master
- Last Pushed: 2023-01-05T07:45:29.000Z (about 2 years ago)
- Last Synced: 2024-02-23T20:30:21.485Z (11 months ago)
- Topics: css, html, javascript, scss, vue, webpack, yarn
- Language: Vue
- Homepage:
- Size: 2.86 MB
- Stars: 0
- Watchers: 4
- Forks: 3
- Open Issues: 25
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- Contributing: CONTRIBUTING.md
- License: LICENSE.md
Awesome Lists containing this project
README
Funda Workshop Web Development Minor
Mocked example of the funda Frontend Monolith. In reality the tech stack is slightly different. It contains both modern and legacy code:
- C#
- .NET core
- jQuery components (legacy code)
- Vue (recently implemented)## Table of contents
- [Prerequisites](#prerequisites)
- [Installation](#installation)
- [Tech stack](#tech-stack)
- [Features](#features)
- [Testing](#testing)
- [Contributing](#contributing)
- [Licenses](#licenses)## Prerequisites
Make sure you have installed all of the following prerequisites on your development machine:
- Node.js (`>=10.0.0 <12.0.0`) - [Download & Install Node.js](https://nodejs.org/en/download/)
- Yarn package manager (`>=1.19.1`) - [Download & Install Yarn](https://yarnpkg.com/en/docs/install#mac-stable)## Installation
Clone the repository and change the directory
```bash
$ git clone https://github.com/larsdouweschuitema/workshop-frontend-minor.git && cd workshop-frontend-minor
```Install dependencies using `yarn`
```
$ yarn install
```Run client and server concurrent in development mode
```
$ yarn run dev
```Run client in development mode
```
$ yarn run client
```Run server in development mode
```
$ yarn run server
```Create production build
```
$ yarn build
```## Tech stack
- Package manager `yarn`
- Module bundler `webpack`
- Client-side framework `vue`
- Router `vue-router`
- State management `vuex`
- Data fetchig `axios`
- Linter `eslint`
- Unit testing `jest`## Features
- Consistent code styles using `.editorconfig` and `eslint`
- Split development and production `webpack` configurations using `webpack-merge`
- Hot reloading during local development using `webpack-dev-server`
- Expose local servers over secure tunnels to the public internet using `ngrok`
- Git hooks `husky`
- CSS extraction on production using `mini-css-extract-plugin`
- Simulate backend REST API using `json-server` and `faker`
- Run client and server concurrent using `concurrently`## Testing
Run all tests
```
$ yarn test
```## Contributing
To contribute to this repository see the [CONTRIBUTING.md](CONTRIBUTING.md) file for details
We use `.editorconfig` to define and maintain consistent coding styles between different editors and IDEs.
Please check [editorconfig.org](https://www.editorconfig.org) if your IDE requires a plugin or supports EditorConfig by default.## Licenses
This project is licensed under the MIT License - see the [LICENSE.md](LICENSE.md) file for details