Reputation: 6403
I've come across a few Ember component libraries but don't see much activity in their repositories. This is raising some doubt as to whether I should use one in a brand new project.
Are people still using component libraries in new [Ember CLI] projects?
Example component libraries I've found:
Any experience with any of these lately? Any new kids on the block?
Or are you creating your own components as required?
Upvotes: 0
Views: 1288
Reputation: 2286
There's not a perfect answer to this question. However, there are some factors I weigh when deciding whether or not to use a component library and which one:
There are probably more things to consider, but my point is the decision should be well thought out and deeply question whether or not you need a component library at all.
I have used ember-material-lite extensively. It's a good option if you want to follow Google's Material Design spec. Another nice thing about it is you can easily override both the component JS and Handlebars files for each component in your application to extend/modify their behavior.
Upvotes: 2