Security News
Input Validation Vulnerabilities Dominate MITRE's 2024 CWE Top 25 List
MITRE's 2024 CWE Top 25 highlights critical software vulnerabilities like XSS, SQL Injection, and CSRF, reflecting shifts due to a refined ranking methodology.
@bhatvikrant/panda-ui
Advanced tools
A react component library for building beautiful and consistent user interfaces
make a folder
run: npm init -y
run yarn add -D react react-dom typescript @types/react
run npx tsc --init
to generate tsconfig.json
"jsx": "react",
"module": "ESNext",
"declaration": true,
"declarationDir": "types",
"sourceMap": true,
"outDir": "dist",
"moduleResolution": "node",
"allowSyntheticDefaultImports": true,
"emitDeclarationOnly": true
Create a component to test at /src/components
for eg. a Button component
src/components/index.tsx
and then export it like: export { default as Button } from "./Button"
src/index.ts
and then export it like: export * from "./components"
Install rollup, run: yarn add -D rollup @rollup/plugin-node-resolve @rollup/plugin-commonjs @rollup/plugin-typescript rollup-plugin-dts rollup-plugin-postcss css-loader tslib
Create rollup.config.json
in the root with data:
import resolve from "@rollup/plugin-node-resolve";
import commonjs from "@rollup/plugin-commonjs";
import typescript from "@rollup/plugin-typescript";
import postcss from "rollup-plugin-postcss";
import dts from "rollup-plugin-dts";
const packageJson = require("./package.json");
export default [
{
input: "src/index.ts",
output: [
{
file: packageJson.main,
format: "cjs",
sourcemap: true,
},
{
file: packageJson.module,
format: "esm",
sourcemap: true,
},
],
plugins: [
resolve(),
commonjs(),
typescript({ tsconfig: "./tsconfig.json" }),
postcss(),
],
},
{
input: "dist/esm/types/index.d.ts",
output: [{ file: "dist/index.d.ts", format: "esm" }],
plugins: [dts()],
external: [/\.(css|less|scss)$/],
},
];
package.json
"scripts": {
"rollup": "rollup -c" // "-c" means run rollup with a config file (rollup.config.js)
},
"main": "dist/cjs/index.js",
"module": "dist/esm/index.js",
"files": ["dist"],
"types": "dist/index.d.ts"
Push all the code to an empty public github repository.
Now its time to publish this library to NPM as a package
"name": "@YOUR_GITHUB_USERNAME/YOUR_GITHUB_REPO_NAME", // eg. "name": "@bhatvikrant/panda-ui",
"publishConfig": {
"registry": "https://npm.pkg.github.com/YOUR_REPOSITORY_NAME"
}
cd ~ && nano .npmrc
then paste the following in .npmrc
registry=https://registry.npmjs.org/
@YOUR_GITHUB_USERNAME:registry=https://npm.pkg.github.com/
//npm.pkg.github.com/:_authToken=YOUR_AUTH_TOKEN
Add testing using jest & react testing library
yarn add -D @testing-library/react jest @types/jest
jest.config.js
with data:
module.exports = {
testEnvironment: "jsdom", // jsdom allows you to simulate DOM for testing
moduleNameMapper: {
".(css|less|scss)$": "identity-obj-proxy",
},
};
src/components/Button/index.test.ts
@babel/core @babel/preset-env @babel/preset-react @babel/preset-typescript babel-jest babel-loader identity-obj-proxy
babel.config.js
with:module.exports = {
presets: [
"@babel/preset-env",
"@babel/preset-react",
"@babel/preset-typescript",
],
};
Install storybook
npx sb init
git tag 0.0.1
git push origin 0.0.1
Note: video tutorial at https://www.youtube.com/watch?v=XHQi5a0TmMc&t=58s&ab_channel=AlexEagleson
How to publish to NPM & GPR: https://dev.to/joeattardi/how-to-publish-an-npm-package-to-npm-and-github-package-registry-simultaneously-using-github-actions-213a
FAQs
A react component library for building beautiful and consistent user interfaces
The npm package @bhatvikrant/panda-ui receives a total of 1 weekly downloads. As such, @bhatvikrant/panda-ui popularity was classified as not popular.
We found that @bhatvikrant/panda-ui demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
MITRE's 2024 CWE Top 25 highlights critical software vulnerabilities like XSS, SQL Injection, and CSRF, reflecting shifts due to a refined ranking methodology.
Security News
In this segment of the Risky Business podcast, Feross Aboukhadijeh and Patrick Gray discuss the challenges of tracking malware discovered in open source softare.
Research
Security News
A threat actor's playbook for exploiting the npm ecosystem was exposed on the dark web, detailing how to build a blockchain-powered botnet.