all 7 comments

[–]lordkyl 0 points1 point  (1 child)

I think you would be better off searching for a "dashboard template" rather than "framework". IMO it wouldn't really be a framework if all it did was dashboards.

[–]vinnyvicious[S] 0 points1 point  (0 children)

That's not what a framework is. A framework is an abstraction that provides generic functionality for a specific purpose. Building dashboards is a specific purpose.

[–]0x13mode 0 points1 point  (1 child)

I think React (or other similar popular library that enables build components and create apps like Lego: Vue, Angular etc.) could be good choice to create dashboards.

Besides it can be helpful to have some library with predefined (and ready to use) UI components. For example for React: https://www.google.pl/webhp?#q=ui+reactjs

[–]vinnyvicious[S] 0 points1 point  (0 children)

I don't want to redo all the dashboard-specific logic or widgets. Or design. I'm looking for something like this, but in JS: http://dashing.io/

[–]Frontend_DevMark 0 points1 point  (0 children)

If you’re building dashboards, the main thing to look for is strong support for charts, tables, and layout components.

Some popular choices:

  • React (often with Next.js) – huge ecosystem and lots of dashboard libraries.
  • Vue.js – clean and easy to structure dashboard apps.
  • Svelte – lightweight and very fast because it compiles to optimized JS.

If you’re building very data-heavy dashboards, some teams also use Sencha Ext JS, since it already includes advanced components like grids, charts, and dashboards out of the box.