diff --git a/README.md b/README.md
index cd3c5db..c4ab2fe 100644
--- a/README.md
+++ b/README.md
@@ -4,12 +4,27 @@ A polyfill of ScrollTimeline and ViewTimeline as defined by the [spec](https://d
View a [cool demo showing its usage](https://flackr.github.io/scroll-timeline/demo/parallax/)!
+# News
+
+Recent updates:
+ * npm is now supported: use npm install scroll-timeline-polyfill
+ * scroll-timeline-lite.js provides a lighter-weight version of the polyfill,
+ supporting only the javascript portions of the API. Use this if you want to
+ reduce overhead (bytes transmitted and runtime)
+
# Usage
-To use this polyfill, import the module into your site and you can start creating animations that use a `ScrollTimeline` or `ViewTimeline`.
+To use this polyfill directly, simply import the module into your site's js, or
+include it from your html. In either case you can use the lite version,
+`scroll-timeline-lite`, if you only need the javascript portion of the API
+(`ScrollTimeline` and/or `ViewTimeline` objects), or you can include the full version, `scroll-timeline`
+
+Note that this example is using the lite version which only supports the javascript
+porion of the API. Then you can reference the API (using `ScrollTimeline` or
+`ViewTimeline`).
```js
-import 'https://flackr.github.io/scroll-timeline/dist/scroll-timeline.js';
+import 'https://flackr.github.io/scroll-timeline/dist/scroll-timeline-lite.js';
document.getElementById('parallax').animate(
{ transform: ['translateY(0)', 'translateY(100px)']},
@@ -22,7 +37,8 @@ document.getElementById('parallax').animate(
});
```
-Also works with CSS Animations that use a `view-timeline` or `scroll-timeline`
+The full polyfill adds support for CSS Animations that use a `view-timeline`
+or `scroll-timeline` in CSS.
```html
@@ -39,10 +55,38 @@ Also works with CSS Animations that use a `view-timeline` or `scroll-timeline`
}
```
-Please ensure your CSS is hosted on the same domain as your website or included directly on the page within a