Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/mvlabs/isomorphic-mithril
Showcase of the challenges that we faced implementing an isomorphic web application with Mithril
https://github.com/mvlabs/isomorphic-mithril
Last synced: about 2 months ago
JSON representation
Showcase of the challenges that we faced implementing an isomorphic web application with Mithril
- Host: GitHub
- URL: https://github.com/mvlabs/isomorphic-mithril
- Owner: mvlabs
- Created: 2017-03-20T15:49:55.000Z (almost 8 years ago)
- Default Branch: master
- Last Pushed: 2018-11-05T10:51:32.000Z (about 6 years ago)
- Last Synced: 2024-08-01T22:41:42.284Z (5 months ago)
- Language: JavaScript
- Size: 1.3 MB
- Stars: 30
- Watchers: 7
- Forks: 6
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
- awesome-mithril - Isomorphic web application with Mithril - Server-side rendering example using [mithril-node-render](https://github.com/MithrilJS/mithril-node-render). (Uncategorized / Uncategorized)
README
# Isomorphic web application with Mithril.js
**Isomorphic JavaScript webapps** have been around for a while. The benefits are multiple: SEO (crawlable urls),
performance (faster first render, interaction and navigation) and maintainability (less code, shared by both the client
and the server, no duplicate logic).This repository contains the code of the website:
[http://isomorphic-mithril.mvlabs.it](http://isomorphic-mithril.mvlabs.it)
which is a showcase of the challenges that we faced implementing an isomorphic web application.
The aim is to present a real case study where we chose **Mithril** for its speed, simplicity and elegance.
We will show the solutions we used to solve the common problems for this kind of app.## Development
```
npm install
npm start
```