-
Notifications
You must be signed in to change notification settings - Fork 53
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Is this library stable? #391
Comments
Hi @alberto-f! Thanks for considering Microstates for your application. As always, the question of whether something is "ready" for production is subjective. We are currently using the released version and it is (as far as we know) bug free, but we do use semver and as you point out, the Here is the roadmap of the changes we plan on making before
before: create(Number, 4).state //=> 4
valueOf(create(Object, {})) //=> Object {} after create(Number, 4).value //=> 4
create(Object, {}).value //=> Object {}
before import { Store } from 'microstates'; after import { Store } from `@microstates/store`; I hope that helps answer your question. The API has been stable for a while now, but will change. However, we are conscientious of semver and would not release breaking changes without at the very least iterating on the minor version number, and once we do reach |
Thank you very much for providing this information. :) |
Hello there,
First at all, thank you guys for making this library.
We are considering using this library in production but Im wondering if it is ready for production.
I see the coverage is 100%. Well done!!
Still since the version of this package is in version 0 Im wondering if it has a stable API. Usually version 0.X.Y means that it is not stable yet.
In regards to that, Is version 0.X.Y still under heavy development ? Is this library using sematic versioning?
Thank you for this awesome job!
The text was updated successfully, but these errors were encountered: