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 🙏

© 2025 – Pkg Stats / Ryan Hefner

@octree/svelte-components

v0.0.7

Published

A reusable Svelte component library

Readme

@octree/svelte-components

Lancement en local

yarn
yarn storybook

Pusher des changements

Lorsque vous changez des composants dans la lib, une fois terminé, exécutez la commande suivante:

yarn build
yarn package

Cela permet de mettre à jour les fichiers build de vos composants afin de les rendre accessibles depuis un autre projet. Ensuite, il faut publier tout cela! Pour ça, il faut d'abord changer la version de votre package.json de votre lib:

{
	"name": "@octree/svelte-components",
	"version": "0.0.3"
}

Lancez:

npm publish --access public

Connectez-vous, entrez l'authentification reçue par message et voilà!

Installation dans un autre projet en local

Avant tout, installez le projet sur votre machine (idéalement dans le même dossier que le nouveau projet, sinon vous devrez redéfinir le lien relatif dans le package.json):

"dependencies": {
	"svelte-components": "link:../svelte-components",
	"yarn": "^1.22.21"
}

Ensuite, exécutez les commandes suivantes:

yarn -v
yarn set version 1.22.21
yarn link "sveltekit-components"
yarn
cd chemin/vers/svelte-components
yarn link
cd chemin/vers/votre/projet/frontend
yarn link "@octree/svelte-components"

Pour que les composants aient le style attendu, installez Tailwind CSS et suivez la documentation pour SvelteKit, ainsi que daisyUI. Une fois ces deux bibliothèques installées, vos composants n'arboreront pas encore le magnifique style de daisyUI. Ajoutez une ligne dans le fichier tailwind.config.js:

/** @type {import('tailwindcss').Config} */
export default {
	content: [
		'./src/**/*.{html,js,svelte,ts}',
		'./node_modules/@octree/svelte-components/**/*.{html,js,svelte,ts}'
	],
	theme: {
		extend: {}
	},
	plugins: [require('daisyui')]
};

Puis exécutez :

yarn
yarn dev

Installation dans un autre projet depuis npm

yarn -v
yarn set version 1.22.21
yarn add @octree/svelte-components

Pour que les composants aient le style attendu, installez Tailwind CSS et suivez la documentation pour SvelteKit, ainsi que daisyUI. Une fois ces deux bibliothèques installées, vos composants n'arboreront pas encore le magnifique style de daisyUI. Ajoutez une ligne dans le fichier tailwind.config.js :

/** @type {import('tailwindcss').Config} */
export default {
	content: [
		'./src/**/*.{html,js,svelte,ts}',
		'./node_modules/@octree/svelte-components/**/*.{html,js,svelte,ts}'
	],
	theme: {
		extend: {}
	},
	plugins: [require('daisyui')]
};

Puis exécutez :

yarn
yarn dev

Mise à jour de la lib

N'oubliez pas de vérifier la version de la lib. Si elle n'est pas à jour, changez la version dans le package.json de votre projet où vous souhaitez installer la lib :

"dependencies": {
    "@octree/svelte-components": "^0.0.3",
    "D": "^1.0.0",
    "autoprefixer": "^10.4.18",
    "postcss": "^8.4.35",
    "tailwindcss": "^3.4.1"
}

Puis exécutez, pour mettre à jour vos dépendances :

yarn
yarn dev

deployer la lib

creé un package

yarn build-storybook

run un server avec l'application

npx serve ./storybook-static/