@primitiva/kernel
v1.0.1
Published
A lightweight React kernal library
Readme
@primitiva/kernel
This React kernal library is a foundational library used for core functionality used within a React applications. It provides essential utilities and functions, and constants that are commonly used in React projects.
Installation
To install the @primitiva/kernel Library, you can use npm or yarn:
npm install @primitiva/kernel@lastestor
yarn add @primitiva/kernel@lastestUsage
Here is an example of how to use the React Core Library in your project:
import { Base } from '@primitiva/kernel';
function App() {
const base = new Base();
return (
<>
</>
);
}
export default App;Running Tests
To execute the test scripts, you can use the following command:
npm testor
yarn testThis will run the test suite and provide you with feedback on the functionality of the library.
Linting
To ensure that your code adheres to the project's coding standards, you can run the linter with the following command:
npm run lintor
yarn lintThis will check your code for any linting errors and help you maintain a consistent codebase.
