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

js-skulpt

v0.2.42

Published

js-skulpt 是基于 JavaScript 构建的运行 Python 代码的一个模块,正常的使用和运行都能通过以下方式来使用。能够正常使用的地方是普通代码和 turtle 代码的运行,针对 pygame 代码运行时,需要注意的是要在项目的 public 文件夹中引入 assets/pagame_dist 文件夹才能正常使用运行 Python 代码。

Downloads

10

Readme

js-skulpt

js-skulpt 是基于 JavaScript 构建的运行 Python 代码的一个模块,正常的使用和运行都能通过以下方式来使用。能够正常使用的地方是普通代码和 turtle 代码的运行,针对 pygame 代码运行时,需要注意的是要在项目的 public 文件夹中引入 assets/pagame_dist 文件夹才能正常使用运行 Python 代码。

  • 下载

    npm i js-skulpt --save-dev
  • 引用

    import {
      initSk,
      startSk,
      pauseSk,
      imageCanvas,
      clearKeyboardEvent,
    } from "js-skulpt";
    
    // 存储sk的状态值和输出值
    const [myData, setMyData] = useState < any > {};
    
    // 取值
    const { successOutput, canvasPrecess, image } = myData;
    
    // 代理设置输出的值
    const dataPut = (ikey: string, value: any) => {
      setMyData((myData: any) => {
        let _myData = { ...myData, [ikey]: value };
        return _myData;
      });
    };
    
    //初始化获取监听
    useEffect(() => {
      initSk(dataPut);
    }, []);
    
    //运行获取内部参数
    const handleClick = (e: any) => {
      startSk({
        scaleNeed: false, //是否缩放画布
        code: code, //输入代码
        isLineno, //是否翻译显示行号
        boundary: {
          width: 600, //画布宽
          height: 800, //画布高
          animate: true, //画布动画
          speedLevel: 1, //画布动画速度
        },
        refInput, //绑定页面input输出父级
        refCanvas, //绑定页面画布
        workSpace, //绑定页面画布包裹gird
        env: "production", //服务是测试或生产
      });
    };
    
    //停止进程获取sk内部参数
    pauseSk();
    
    //画布绘制成静态图片的参数获取
    imageCanvas();
    
    //停止进程对鼠标和键盘的监听
    clearKeyboardEvent();