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

doric-svg

v0.1.12

Published

Doric plugins for SVG.

Downloads

2

Readme

DoricSVG

Doric plugins for SVG.

  • support loaded by URL.
  • support loaded by customized resource loader.
  • support loaded by xml string.

下图分别为代码在Android及iOS应用上的运行截图

| Android | iOS | | ---- | ---- | | ! | |

Usage

  1. loaded by URL
<SVG
    ref={svgRef}
    backgroundColor={Color.WHITE}
    layoutConfig={layoutConfig().just().configAlignment(Gravity.Center)}
    width={300}
    height={300}
    scaleType={ScaleType.ScaleAspectFit}
    url={svgUrls[this.index % svgUrls.length]}
    loadCallback={(info) => {
        if (info) {
            log(`image width: ${info.width}, height: ${info.height}`)
        }
    }}
/>
  1. loaded by customized resource loader
<SVG
    backgroundColor={Color.WHITE}
    layoutConfig={layoutConfig().just().configAlignment(Gravity.Center)}
    width={200}
    height={200}
    scaleType={ScaleType.ScaleAspectFit}
    localResource={Environment.platform === 'Android'
        ? new AssetsResource('android.svg')
        : new MainBundleResource("assets/apple.svg")}
/>
  1. loaded by xml string
const xmlString = `<?xml version="1.1" encoding="UTF-8"?>
<svg width="480px" height="480px" xmlns="http://www.w3.org/2000/svg" version="1.1">
    <title>Note</title>
    <g>
        <path d="M240,476 C370,476 476,370 476,240 C476,109 370,4 240,4 C109,4 4,109 4,240 C4,370 109,476 240,476" fill="rgb(230,250,210)"></path>
        <path d="M179,311 C179,311 176,305 157,305 C138,305 108,314 108,349 C108,370 132,383 154,383 C176,383 202,364 202,342 C202,318 202,201 202,201 C202,201 268,177 330,177 L330,277 C330,277 318,273 307,273 C288,273 255,287 259,317 C263,347 291,351 306,351 C330,351 354,331 354,311 C354,295 354,96 354,96 C354,96 232,99 179,129 Z M179,311" fill="darkgreen"></path>
    </g>
</svg>
`
<SVG
    backgroundColor={Color.WHITE}
    layoutConfig={layoutConfig().just().configAlignment(Gravity.Center)}
    width={100}
    height={100}
    scaleType={ScaleType.ScaleAspectFit}
>
    {xmlString}
</SVG>