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

costreamjs

v1.0.0

Published

A high-performance streaming programming language for parallel architecture. This repo (js-version) is created for better using & reading & debugging.

Downloads

725

Readme

COStreamJS

Build Status

COStream 工具在动态弱类型语言 js 上的部署, 目的是代码模块化 ; 易读 ; 易测试

对实验室其它同学傻瓜式指南:

  1. 首先在ubuntu安装node执行环境
wget -qO- https://raw.githubusercontent.com/creationix/nvm/v0.33.6/install.sh | bash
nvm install --lts
  1. 接着clone项目并编译执行例子程序wang.cos
git clone https://github.com/DML308/COStreamJS.git
cd COStreamJS
npm install
npm run build
node dist/costream-cli.js example/wang.cos -j4
cd dist/wang
make
./a.out

使用方法

<!-- example.html -->
<script src="https://demo.costream.org/COStreamJS.js"></script>
<script>
    COStreamJS.parser.parse(`int i= 1*2+3;`)
    COStreamJS.main(`...`) // ...处需填入数据流程序
</script>
  • node 版本: npm install -g costreamjs , 然后在命令行执行costreamjs -h即可查看操作指南

例子命令: costreamjs ./example/pipeline.cos -j4 -o ./dist/

开发方法

git clone后执行npm installcnpm installyarn 然后依次执行下列指令

  1. npm run dev 把 js 文件打包至dist/global.js , 该文件会自动热更新
  2. npm run bison 使用jison工具来生成语法分析器至dist/parser.js, 每次修改src/config/parser.jison后都要执行该命令
  3. simple-server 然后访问localhost:3000/dist, 在 Chrome 控制台中输入 parser.parse('int i = 1+2') 即可拿到生成的语法树

环境依赖

node.js 12 以上

DEMO 试玩地址 https://demo.costream.org