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

pikajs

v0.0.7

Published

Let's build a little Javascript interpreter together

Downloads

3

Readme

对于想深入了解 JavaScript 引擎内部执行机理的同学,是否在面对语言标准 Standard ECMA-262 或者浩如烟海的引擎源码时感到手足无措?

不如让我们一起使用 TypeScript 来编写一个 JavaScript 解释器,切身感受一下引擎的基本运行原理,迎接未来的扬帆远航。

进度

  • [ ] 解释器编码
  • [ ] 课程章节

总体上分为两部分,先完成解释器代码的编码工作,然后再完成相应的章节。每天会有固定的更新,可以通过 Watch 或者 Star 关注更新。

运行

大家可以先通过运行 tests 目录下的测试案例来体验一下效果,通过下面的命令执行程序:

npx pikajs path-to-your-source.js

path-to-your-source.js 可以是磁盘路径或者网络文件,因此我们可以通过下面的命令在控制台打印 hello world

npx pikajs https://unpkg.com/[email protected]/tests/hello.test.js

甚至还可以在本地启动一个 HTTP 服务:

npx pikajs https://unpkg.com/[email protected]/tests/http-srv.js