Giter Site home page Giter Site logo

nolze / svelte-component-template Goto Github PK

View Code? Open in Web Editor NEW

This project forked from yoglib/svelte-component-template

0.0 2.0 0.0 4.26 MB

A base for building shareable Svelte 3 components

Home Page: https://svelte-component-template.netlify.app

License: Other

JavaScript 89.27% Svelte 8.04% HTML 2.69%

svelte-component-template's Introduction

Svelte 3 Component Template

Known Vulnerabilities PRs Welcome

Table of Contents

  1. Features
  2. Getting started
  3. Developing
  4. Consuming components
  5. Backward Compatibility
  6. Preprocessors
  7. Testing
  8. Publishing to npm
  9. Frequently Asked Questions
  10. Credits & Inspiration

Features

  • Autoprefixing CSS
  • Preprocessing
  • Formating
  • Linting
  • Testing
  • Storybook

Getting Started

  1. Choose your template (regular/monorepo)

  2. Clone it with degit:

npx degit YogliB/svelte-component-template my-new-component
or
npx degit YogliB/svelte-component-template my-new-component#monorepo
  1. cd into the folder and install the node_modules:
cd my-new-component
git init
npm i
  1. Run npm init, to configure the project.

Your component's source code lives in src/components/[MyComponent].svelte.

Developing

  1. Start Rollup:
npm run dev
  1. Edit a component file in src/components, save it and watch the magic happens.

  2. Make sure your component is exported in src/components/index.js.

  3. Make sure your component is imported and nested in src/App.svelte, so you can preview and test it.

  4. Navigate to localhost:5000 to see your components live.

Consuming Components

Your package.json has a "svelte" field pointing to src/components/index.js, which allows Svelte apps to import the source code directly, if they are using a bundler plugin like rollup-plugin-svelte or svelte-loader (where resolve.mainFields in your webpack config includes "svelte").

Backward Compatibility

This template uses svelte-preprocess in order to integrate PostCSS auto-prefixing capabilities & Babel's transpiling capabilities into the build process.

Browserlist

PostCSS uses browserlist under the hood, in order to "know" what css to prefix.

The browserlist configuration is located inside the package.json.

Preprocessors

This template comes with the svelte-preprocess by default, which simplifies the use of preprocessors in components.

Usage

Getting Started with svelte-preprocess.

  • To configure svelte-preprocess use the sveltePreprocessConfig variable in ./preprocess.js

Testing

This template uses Cypress & testing-library for testing.

It is highly recommended going through their docs if you intend on testing your components.

You can witness a simple example by running npm run cy:open.

Frequently Asked Questions

What's the index.js file for?

It's for Svelte to be able to import multiple components from a single source.

For instance, tt lets the uset do:

import { MyComponent, MyOtherComponent } from 'my-component-library';

Instead of:

import MyComponent from 'my-component-library/components/MyComponent.svelte';
import MyOtherComponent from 'my-component-library/components/MyOtherComponent';

How do I include 3'rd party css in my components?

There are a few options to do this:

  1. Don't include 3'rd party css and just tell your users to do that (Probably using PostCSS).
  2. Include it via a cdn, like so:
@import url('https://unpkg.com/@scope/package/main.min.css');

Publishing to npm

Credits & Inspiration

svelte-component-template's People

Contributors

dependabot-preview[bot] avatar yoglib avatar

Watchers

 avatar  avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.