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

slidev-theme-smile

v0.8.2

Published

Smile theme for Slidev

Downloads

7

Readme

slidev-theme-smile

NPM version

Smile theme for Slidev.

Screen capture 01 Screen capture 02 Screen capture 03

Install

Add the following frontmatter to your slides.md. Start Slidev then it will prompt you to install the theme automatically.

Learn more about how to use a theme.

Components

This theme provides the following components:

Alert

Display an alert box.

Usage:

<alert>This is an info</alert>
<alert>

Content with `markdown` should be surrounded by **blank lines**.

</alert>

Parameters:

  • type (type: 'info' | 'warning' | 'error', default: 'info'): Type for the alert

DownloadButton

Display a button you can click to download a file.

Usage (demo.html is in the public folder):

<DownloadButton filename="demo.html">Download code</DownloadButton>

Or:

<DownloadButton content="<h1>Hello world!</h3>" filename="demo.html">Download code</DownloadButton>

Parameters:

  • content (type: string): Content of the file
  • filename (type: string): Filename of the downloaded file and content file if content is empty.
  • type (type: string, default 'text/plain'): mime type of the content

Icon + IconSprite

Display a Smile icon.

Usage:

<icon-sprite/>
<icon icon="rocket-filled" />

You have to include the IconSprite component only once and at the beginning of your presentation.

Parameters:

  • class (type: string): HTML class to apply to the icon
  • color (type: 'primary' | 'secondary'): Color of the icon
  • icon (type: string, required): The icon name

Logo

Display the Smile logo.

Usage:

<logo/>

Parameters:

  • color (type: 'white' | 'primary', default: 'white): The main color of the logo
  • iconColor (type: 'primary' | 'secondary', default: 'primary'): The color of the icons on the logo

PaintWorklet

Import a CSS paintWorklet module.

Usage:

<PaintWorklet src="https://unpkg.com/@houdini-modules/[email protected]/border-radius-reverse.js"></PaintWorklet>

Parameters:

  • src (type: string): Source URL of the worklet to load.

vScript

Like the classical <script> tag.

Usage:

<vScript scoped type="module">
  import intersection from 'https://cdn.jsdelivr.net/npm/[email protected]/intersection.js';
  const result = intersection([1,2,3,4], [2,4,6,8]);
  document.querySelector('#result').innerText = JSON.stringify(result);
</vScript>

Parameters:

  • scoped (type: boolean, default: false): Wrap the content of the <script> with an IIFE to create an isolated scope.
  • Other attributes are passed down to the <script> tag.

Layouts

two-cols-with-title

Display two columns with a top content for the title.

Usage:

---
layout: two-cols-with-title
---

## Top title

::left::

Left col content

::right::

Right col content

two-cols-demo

Display code on the left and demo on the right.

Usage:

---
layout: two-cols-demo
---

## Demo

::left::

```html
<button class="button" type="button">Click me</button>
```

::right::

<button class="button" type="button">Click me</button>

Contributing

  • npm install
  • npm run dev to start theme preview of example.md
  • Edit the example.md and style to see the changes
  • npm run export to generate the preview PDF
  • npm run screenshot to generate the preview PNG