number-memory-game-component
v1.0.0
Published
A simple number memory game implemented as a web component.
Maintainers
Readme
Number Memory Game Web Component
A simple web component that implements a number memory game.
Installation
npm install number-memory-game-component # Or whatever you named your packageUsage
Import the component:
// In your JavaScript file import "number-memory-game-component/number-memory-game.js";Use the custom element in your HTML:
<number-memory-game></number-memory-game>
Example
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<title>Number Memory Game Demo</title>
<script
type="module"
src="./node_modules/number-memory-game-component/number-memory-game.js"
></script>
</head>
<body>
<number-memory-game></number-memory-game>
</body>
</html>License
MIT
