npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

component-library-mh-test-moh

v1.0.5

Published

create button component

Downloads

3

Readme

create button component

npm install -D tailwindcss postcss autoprefixer

npx tailwindcss init -p

tailwind.config.js export default { content: [ "./index.html", "./src/**/*.{js,ts,jsx,tsx}", ], theme: { extend: {}, }, plugins: [], }

index.css @tailwind base; @tailwind components; @tailwind utilities;

vite.config.js import { resolve } from "path";

entry: resolve(__dirname, "./src/components/index.ts"),

name: "component-library-mh-test-moh", // the proper extensions will be added fileName: "component-library-mh-test-moh",

rollupOptions: {
  // make sure to externalize deps that shouldn't be bundled
  // into your library
  external: ["react", "react-dom"],
  output: {
    // Provide global variables to use in the UMD build
    // for externalized deps
    globals: {
      react: "React",
      "react-dom": "ReactDom",
    },
  },
},    

don't put tailwind.css to the external dependency 1:40

package.json

"files": [ "dist" ], "main": "./dist/component-library-mh-test-moh.umd.cjs", "module": "./dist/component-library-mh-test-moh.js",

"exports": { ".": { "import": "./dist/my-lib.js", "require": "./dist/my-lib.umd.cjs" } }

yarn run build you will see dist/component-library-mh-test-moh.js component-library-mh-test-moh.umd.cjs

npm pack

get a component-library-mh-test-moh-0.0.0.tgz like a zip file

test module locally

npm add component-library-mh-test-moh-0.0.0.tgz

create TestArea.jsx

const TestArea = ({ children }) => { return ( <section style={{ bo: "2px solid #ccc", margin: "2rem", padding: "2rem" }}> {children} ); };

export default TestArea;

in App.jsx import "./App.css"; // import Button from "./components/Button"; import Button from "component-library-mh-test-moh"; import TestArea from "./TestArea"; const App = () => { return ( ); };

export default App;

error fix import {Button} from "component-library-mh-test-moh";

now it will work

how to pass props to the component

if we comment tailwind.css from index.jsx , the styles will be removed from the button component

button.tsx <button onClick={onClick} {...rest} className="bg-blue-400 text-blue-50 m-2 p-2 rounded-md" > {children}

npm uninstall component-library-mh-test-moh rm -rf component-library-mh-test-moh-0.0.0.tgz

npm run build npm pack

npm add component-library-mh-test-moh-0.0.1.tgz

export css to the component

create tailwind.css in component add @tailwind base; @tailwind components; @tailwind utilities;

package.json "./dist/style.css": { "import": "./dist/style.css", "require": "./dist/style.css" }

component index.js
import Button from "./Button";

import "./tailwind.css"; export { Button };

then run yarn run build style.css is created

npm ri=un build

npm pack

npm add component-library-mh-test-moh-0.0.1.tgz

import "component-library-mh-test-moh/dist/style.css";

pass css style to button component

read more about tailwind merge

commit to githug

publish

npm login

npm publish command

test the publish

peer depencencies react and react dom are peer depencencies

is a way to force the user to download the dependencies whithout whih this library wont work

npm version semver

Testing vi test unit testing framework

npm install -D vitest

scripts

"test": "vitest", "coverage": "vitest run --coverage"

npm install -D jsdom

npm install @testing-library/react -D

npm install -D @testing-library/jest-dom

test: { environment: "jsdom", globals: true, setupFiles: "./src/tests/setup.js", },

test setup.js import { expect, afterEach } from "vitest";

import { cleanup } from "@testing-library/react";

import matchers from "@testing-library/jest-dom/matchers";

expect.extend(matchers);

afterEach(() => { cleanup(); });

create components/Button.test.jsx