Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/ndlano/learningpath-frontend
NDLA Learningpath Frontend at https://stier.ndla.no
https://github.com/ndlano/learningpath-frontend
auth0 babel education express javascript react react-router-v4 redux redux-thunk webpack
Last synced: about 2 hours ago
JSON representation
NDLA Learningpath Frontend at https://stier.ndla.no
- Host: GitHub
- URL: https://github.com/ndlano/learningpath-frontend
- Owner: NDLANO
- License: gpl-3.0
- Created: 2016-08-10T06:41:59.000Z (about 8 years ago)
- Default Branch: master
- Last Pushed: 2024-04-17T06:49:41.000Z (7 months ago)
- Last Synced: 2024-04-18T10:21:51.989Z (7 months ago)
- Topics: auth0, babel, education, express, javascript, react, react-router-v4, redux, redux-thunk, webpack
- Language: JavaScript
- Homepage:
- Size: 4.45 MB
- Stars: 9
- Watchers: 11
- Forks: 2
- Open Issues: 6
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# NDLA Learningpath front-end
![CI](https://github.com/NDLANO/learningpath-frontend/workflows/CI/badge.svg)
The front-end code powering [https://stier.ndla.no](https://stier.ndla.no).
Norwegian Digital Learning Arena (NDLA) (Norwegian: Nasjonal digital læringsarena) is a joint county enterprise offering [open digital learning assets](https://en.wikipedia.org/wiki/Digital_learning_assets) for upper secondary education. In addition to being a compilation of [open educational resources (OER)](https://en.wikipedia.org/wiki/Open_educational_resources), NDLA provides a range of other online tools for sharing and cooperation.
## Requirements
- Node.JS 20.13
- yarn ~1.15
- Docker (optional)## Getting started
What's in the box?
- React
- Redux
- Express
- Webpack + Babel (ES6) via Razzle### Dependencies
All dependencies are defined in `package.json` and are managed with yarn. To
initially install all dependencies and when the list dependency has changed,
run `yarn`.```
$ yarn
```### Start development server
Start node server with hot reloading middleware listening on port 3000.
```
$ yarn start
```To use a different api set the `NDLA_ENVIRONMENT` environment variable.
### Unit tests
Test framework: [Jest](https://github.com/facebook/jest) with [Enzyme](https://airbnb.io/enzyme/)
```
$ yarn test
```### e2e tests
[Cypress](https://www.cypress.io/) is used for end to end testing.
```
$ yarn e2e
```### Code style
[Prettier](https://prettier.io/) is used for automatic code formatting.
```
$ yarn format
``````
$ yarn format-check
```### ES Linting
Eslint is used for linting javascript code.
```
$ yarn lint-es
```Rules are configured in `./eslintrc` and extends [esling-config-ndla](https://github.com/NDLANO/frontend-packages/tree/master/packages/eslint-config-ndla).
### CSS Linting
j
Check for errors with [stylelint](https://github.com/stylelint/stylelint):```
$ yarn lint-style
```Rules are configured in `./.stylelintrc.js` and extends [stylelint-config-standard](https://github.com/stylelint/stylelint-config-standard).
## Other scripts
```
# GTG? Checks code formating, linting and runs unit tests:
$ yarn check-all
``````
# Create minified production ready build:
$ yarn build
``````
# Start a production build:
$ yarn start-prod
``````
# Do you TDD?
$ yarn tdd
``````
# Docker stuff
$ ./build.sh
```