
Fork this monorepo starter kit to create your own design system and use react-native primitives to build universal components in isolation and use them across your mobile and web apps.
The lerna-react-native-web design system starter kit is an innovative framework designed to streamline the development of design systems using React Native primitives. This monorepo approach allows developers to create reusable components for mobile and web applications, fostering consistency and efficiency in design. With the ability to build components in isolation, the kit is ideal for teams looking to enhance their workflow and create cohesive user experiences across platforms.
This starter kit is a work in progress, but it already provides valuable tools and functionalities that can significantly improve the development process. From integrated testing setups to easy component generation, it sets a strong foundation for anyone interested in modern design systems.
Monorepo Structure: Allows you to manage multiple packages within a single repository, making it easier to work on related projects simultaneously.
Storybook Integration: Launch and develop your components in isolation, showcasing the designs interactively while promoting effective collaboration among team members.
Component Generation: Utilize a built-in script to generate new components easily without the need to write boilerplate code, streamlining your workflow.
Customizable Testing Tools: Plans to incorporate Jest and Storybook addons for comprehensive testing capabilities, ensuring code quality and reliability.
Cross-Platform Development: Focus on creating real React Native components that seamlessly function on both mobile and web platforms, enhancing versatility.
Enhanced Developer Experience: Features like ESLint, Prettier, and Styled-Components are included to promote clean coding practices and consistent styling.
Documentation in Progress: Although better documentation is forthcoming, the existing package.json file provides critical scripts for effective usage right from the start.

Create React App is a popular tool for quickly setting up a new React project without the need for manual configuration or setup. It provides a preconfigured development environment with modern build tools, a live development server, and an easy-to-use command line interface.
React is a widely used JavaScript library for building user interfaces and single-page applications. It follows a component-based architecture and uses a virtual DOM to efficiently update and render UI components
React Native is a framework for building mobile applications using React and JavaScript. It enables developers to write once and deploy to multiple platforms, including iOS, Android, and the web, while providing a native app-like experience to users.
Styled Components is a popular library for styling React components using CSS syntax. It allows you to write CSS in your JavaScript code, making it easier to create dynamic styles that are specific to each component.
ESLint is a linter for JavaScript that analyzes code to detect and report on potential problems and errors, as well as enforce consistent code style and best practices, helping developers to write cleaner, more maintainable code.
Storybook is a tool for developing and testing UI components in isolation. It provides a sandbox environment where you can experiment with different props and states to see how your component responds.
Stylelint is a modern linter for CSS that helps you avoid errors and enforce consistent styling conventions. It provides rules for detecting errors and warnings, and can be configured to match your specific project's requirements.
TypeScript is a superset of JavaScript, providing optional static typing, classes, interfaces, and other features that help developers write more maintainable and scalable code. TypeScript's static typing system can catch errors at compile-time, making it easier to build and maintain large applications.