Emergence of Storybook The arrival of components to the web was a breakthrough for web application development, allowing the creation of reusable elements, and with it the emergence of Frameworks and libraries such as ReactJs, VueJs, and AngularJs, with the aim of further promoting this idea. But there were no tools to organize these components […]
Blog
Post Recientes
How to write a very professional yet understandable technical tutorial?
Writing a technical tutorial is a great way to share your skills and generate interest in your project or company, or promote your favorite programming language. You don’t need to be a famous programmer or a trained writer to create quality technical content. Experience teaches us that anyone can write a good tutorial if they […]
Dofleini Software submits application to become a private SME
Last Monday, September 20, the regulatory package that legalizes, for the first time in Cuba, the creation of micro, small and medium-sized enterprises (MSMEs) came into force. Dofleini Software immediately submitted the application file to become a private MSME, under Decree Law 46/2021 of the Council of State. The new legislation, which grants legal personality […]
How to implement Drag and Drop with React-Beautiful-DnD
In this tutorial we show how to use the React-Beautiful-DnD library, what it is, how it works and what makes it work. To make the article as simple and explicit as possible, we focus on the three main pillars of this cool library: <DragDropContext /> Wraps the part of the application for which you want […]
How to Configure Storybook to use Ant Design? (Part 3)
Requirements In the second part we learned how to mock the requests that our components make to the server, while in the first part, how to create a project with the necessary configuration to work with Storybook, and thus be able to test our components. Today we continue evaluating some other interesting aspects of this […]
How to achieve a scalable, maintainable and testable context in ReactJS (Part 1)
For some time now, the use of Context has been popular to solve the problem of sharing global status within a complex hierarchy of components on a page or part of a page, and avoiding prop-drilling. Although it is not recommended to use Context for complex situations involving multiple status, as it can involve multiple […]
Extending Storybook to Simulate API Responses with Mock Service Worker (Part 2)
Introduction To make our components work alone, one of the advantages we have to take advantage of Storybook is to make use of its extensions. Today we will be talking about how to integrate Storybook with Mock Service Worker, a tool to simulate our API responses when we make REST-like requests with axios or fetch. […]