React Dino Game is a React component library for using famous dinosaur game in web applications.
npm install react-dino-game

A fun and interactive Dinosaur game built using React. This library allows you to easily embed the classic "Dino" game, inspired by the offline Chrome dinosaur game, into your React applications. The game features a simple design, jump mechanics, score tracking, and basic collision detection.

react-dino-game using npm or yarn:
bash
npm install react-dino-game
`
or bash
`
yarn add react-dino-game
`
Usage
Here's how to integrate the react-dino-game into your React application:
jsx
`
// App.js
import React from 'react';
import { Dino } from 'react-dino-game';
function App() {
return (
My Dino Game
);
}
export default App;
`
Props
- will be added soon after advanced mechanisms are implemented.
Images as per above code output and some work samples
!This is an alt text.
!This is an alt text.
!This is an alt text.
Contribution
Contributions are welcome! Please submit a pull request or open an issue to suggest improvements or report bugs.
This is still in development hence suggest improvements.
If you want to contribute or modify this library, clone the repository and install dependencies:
`
git clone https://github.com/shubham10divakar/react-dino-game.git
cd react-dino-game
npm install
#You can start the development server with:
npm start
``