From d23d676c39d1d8ddc5b707e8e7aebb9dbf40ccb3 Mon Sep 17 00:00:00 2001 From: Kanalveli Date: Tue, 29 Sep 2020 18:30:31 +0530 Subject: [PATCH] Chore: Add README.md Initial commit --- README.md | 50 ++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 50 insertions(+) create mode 100644 README.md diff --git a/README.md b/README.md new file mode 100644 index 0000000..a3a73a7 --- /dev/null +++ b/README.md @@ -0,0 +1,50 @@ +Ember Sequential Render +============================================================================== + +![Build](https://github.com/freshdesk/ember-sequential-render/workflows/Build/badge.svg?branch=master) + + +Modern SPA layouts have an overload of information in the user's viewport in any given route. What's preventing secondary information from blocking or taking up resources, which, if left alone, would drastically improve the rendering of the primary content? +[More thoughts on Critical Rendering Path](https://developers.google.com/web/fundamentals/performance/critical-rendering-path) + +ember-sequential-render helps in CRP optimization with the following features: + +### Prioritized Sequential Rendering + +A composable container component, **sequential-render**, which prioritizes and queues the data fetch and the rendering of its content with the necessary loading states. + +### Postrender callback + +An elegant way to defer the load of thirdparty resources after the rendering of the highest priority item in your queue. + + +Compatibility +------------------------------------------------------------------------------ + +* Ember.js v3.4 or above +* Ember CLI v2.13 or above +* Node.js v8 or above + + +Installation +------------------------------------------------------------------------------ + +``` +ember install ember-sequential-render +``` + + +Usage +------------------------------------------------------------------------------ +[Usage Documentation](https://freshworks.github.io/ember-sequential-render) + +Contributing +------------------------------------------------------------------------------ + +See the [Contributing](CONTRIBUTING.md) guide for details. + + +License +------------------------------------------------------------------------------ + +This project is licensed under the [MIT License](LICENSE.md).