Bumps [qs](https://github.com/ljharb/qs) to 6.5.3 and updates ancestor dependency [moleculer-web](https://github.com/moleculerjs/moleculer-web). These dependencies need to be updated together. Updates `qs` from 6.5.1 to 6.5.3 - [Release notes](https://github.com/ljharb/qs/releases) - [Changelog](https://github.com/ljharb/qs/blob/main/CHANGELOG.md) - [Commits](https://github.com/ljharb/qs/compare/v6.5.1...v6.5.3) Updates `moleculer-web` from 0.6.0-beta7 to 0.10.4 - [Release notes](https://github.com/moleculerjs/moleculer-web/releases) - [Changelog](https://github.com/moleculerjs/moleculer-web/blob/master/CHANGELOG.md) - [Commits](https://github.com/moleculerjs/moleculer-web/compare/v0.6.0-beta7...v0.10.4) --- updated-dependencies: - dependency-name: qs dependency-type: indirect - dependency-name: moleculer-web dependency-type: direct:production ... Signed-off-by: dependabot[bot] <support@github.com>
Advanced Elm Workshop
If you haven't already, follow the Getting Started instructions at the root of this repository, then continue here!
Start the server
We'll be running a local server for our Elm UI to use. Let's get it set up.
cd advanced/server
npm install
npm start
If the server started up successfully, you should see
> moleculer-runner services at the end of your terminal.
We're going to leave this server running and not touch it again for the duration of the workshop, so don't close it until the workshop is over!
Build the Elm UI
Leave the existing terminal running, and open a second terminal.
In the new termnal, cd into the elm-0.19-workshop/advanced/server/ directory again.
Then run this to build the Elm code for the first time:
elm make src/Main.elm --output=../server/public/elm.js
Verify your setup
Open http://localhost:3000 in your browser. You should see this in it:
If things aren’t working, the instructor will be happy to help!
Links
- The solutions to these exercises
- Slides for the Frontend Masters workshop that goes with this repo
- Advanced Elm Video Course that goes with this repo
- The Life of a File - Evan Czaplicki
- The Importance of Ports - Murphy Randle
- Working with Maybe - Joël Quenneville
- Making Impossible States Impossible - Richard Feldman
- Scaling Elm Apps - Richard Feldman
- Make Data Structures - Richard Feldman