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

@antv/gi-sdk-app

v1.2.8

Published

- 加载 JS 脚本,全局变量为 GI_SDK_APP

Downloads

38

Readme

在 HTML 中 消费 GI_SDK_APP

  • 加载 JS 脚本,全局变量为 GI_SDK_APP
<!--- REACT ENV-->
<script src="https://gw.alipayobjects.com/os/lib/babel/standalone/7.19.2/babel.min.js"></script>
<!--- REACT DEPENDENCIES-->
<script src="https://gw.alipayobjects.com/os/lib/react/17.0.2/umd/react.production.min.js"></script>
<script src="https://gw.alipayobjects.com/os/lib/react-dom/17.0.2/umd/react-dom.production.min.js"></script>
<!--- GI_SDK_APP -->
<script src="https://gw.alipayobjects.com/os/lib/antv/gi-sdk-app/1.0.0/dist/index.min.js"></script>
  • 加载 CSS 脚本
<link rel="stylesheet" href="https://gw.alipayobjects.com/os/lib/antv/gi-sdk-app/1.0.0/dist/index.css" />
  • 运行脚本,渲染得到应用

其中 GI_EXPORT_CONFIG.json 都是 Insight 站点导出的配置,如下方代码所示,我们在本地构建了一个 Mock Server ,推荐用户自己构建服务,托管自己的站点应用

<body>
  <div id="root"></div>
  <script type="text/babel">
    const GraphApp = () => {
      const service = async () => {
        const config = await fetch('./GI_EXPORT_CONFIG.json').then(res => res.json());
        return {
          data: config,
          success: true,
        };
      };
      const { default: GI_SDK_APP } = window.GI_SDK_APP;

      return (
        <div style={{ height: '100vh' }}>
          <GI_SDK_APP id={'8e85de53-dcf3-492f-9786-c21554d07e8a'} service={service} />
        </div>
      );
    };
    //@ts-ignore
    window.ReactDOM.render(<GraphApp />, document.getElementById('root'));
  </script>
</body>
  • 最终效果

可以在 g6vp 的仓库中, cd gi-sdk-app ,然后 npm run build ,然后双击 index.html 运行