Update migration, fix various minor issues
- Lot of people couldn't migrate to v1 and plan to reevaluate when v2 is released. - It's "npm" not "NPM". It doesn't stand for anything, and it never has - it was initially chosen simply because it was easy to type. It has a lot of unofficial backronyms with "Node Package Manager" being one of the most common ones, but it's never officially stood for anything as an acronym *or* initialism. - Fixed a few errors in the change log, like non-breaking changes being included in the "Breaking Changes" section and an inaccuracy in the summary of a particular change. - Fixed RawGit URLs to point to GitHack, which is a lighter proxy that offloads caching to Cloudflare instead of also implementing it itself. (It also just uses nginx for all the important server logic, so it scales better.) - Add a few more v0.2 references as appropriate
This commit is contained in:
parent
8186818e10
commit
234b1c9302
26 changed files with 1389 additions and 935 deletions
18
README.md
18
README.md
|
|
@ -1,4 +1,4 @@
|
|||
mithril.js [](https://www.npmjs.com/package/mithril) [](https://www.npmjs.com/package/mithril) [](https://www.npmjs.com/package/mithril) [](https://opencollective.com/mithriljs)
|
||||
mithril.js [](https://www.npmjs.com/package/mithril) [](https://www.npmjs.com/package/mithril) [](https://www.npmjs.com/package/mithril) [](https://opencollective.com/mithriljs)
|
||||
==========
|
||||
|
||||
<p align="center">
|
||||
|
|
@ -29,17 +29,19 @@ Mithril supports IE11, Firefox ESR, and the last two versions of Firefox, Edge,
|
|||
### CDN
|
||||
|
||||
```html
|
||||
<script src="https://unpkg.com/mithril@next/mithril.js"></script>
|
||||
<!-- or -->
|
||||
<script src="https://cdn.jsdelivr.net/npm/mithril@next/mithril.js"></script>
|
||||
<!-- Development: whichever you prefer -->
|
||||
<script src="https://unpkg.com/mithril/mithril.js"></script>
|
||||
<script src="https://cdn.jsdelivr.net/npm/mithril/mithril.js"></script>
|
||||
|
||||
<!-- Production: whichever you prefer -->
|
||||
<script src="https://unpkg.com/mithril/mithril.min.js"></script>
|
||||
<script src="https://cdn.jsdelivr.net/npm/mithril/mithril.min.js"></script>
|
||||
```
|
||||
|
||||
### npm
|
||||
|
||||
```bash
|
||||
# For the most recent stable version
|
||||
$ npm install mithril --save
|
||||
# For the most recent unstable version
|
||||
$ npm install mithril@next --save
|
||||
npm install mithril --save
|
||||
```
|
||||
|
||||
The ["Getting started" guide](https://mithril.js.org/#getting-started) is a good place to start learning how to use mithril.
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue