Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/janwirth/iso-elm
A pattern for writing elm fullstack. Inspired https://github.com/Lamdera
https://github.com/janwirth/iso-elm
Last synced: about 5 hours ago
JSON representation
A pattern for writing elm fullstack. Inspired https://github.com/Lamdera
- Host: GitHub
- URL: https://github.com/janwirth/iso-elm
- Owner: janwirth
- Created: 2019-07-04T00:41:25.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2022-12-10T23:01:09.000Z (almost 2 years ago)
- Last Synced: 2024-03-20T07:33:36.272Z (8 months ago)
- Language: JavaScript
- Homepage:
- Size: 2.46 MB
- Stars: 4
- Watchers: 1
- Forks: 0
- Open Issues: 21
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Iso-Elm
Write elm on client and server## Concept
### Architecture
The Architecture is inspired by lambdera.```
type Server =
updateFromClient : ClientId -> MsgFromClient -> BackendModel -> ( Model, Cmd BackendMsg )
```### Platform
- socket.io as transportation for backend and frontend
- decgen for generating the data interchange### Development
`npm start`
to
- watch-generate coders
- watch-serve frontend as with create-elm-app
- watch-compile and run backend
- nodemon## Next Steps
- Connect using socket.io