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

clarity-repl

v0.33.0

Published

Clarity REPL

Downloads

33

Readme

clarity-repl

Clarity is a decidable smart contract language that optimizes for predictability and security, designed by Blockstack. Smart contracts allow developers to encode essential business logic on a blockchain.

A programming language is decidable if you can know, with certainty, from the code itself what the program will do. Clarity is intentionally Turing incomplete as it avoids Turing complexity. This allows for complete static analysis of the entire call graph of a given smart contract. Further, our support for types and type checker can eliminate whole classes of bugs like unintended casts, reentrancy bugs, and reads of uninitialized values.

A read–eval–print loop (REPL), also termed an interactive toplevel or language shell, is a simple, interactive computer programming environment that takes single user inputs (i.e., single expressions), evaluates (executes) them, and returns the result to the user; a program written in a REPL environment is executed piecewise.

screenshot

Quick Start

Building from cargo

cargo install clarity-repl

Building the CLI from source

The first step is to ensure that you have Rust and the support software installed.

curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh

From there, you can clone this repository:

git clone https://github.com/hirosystems/clarity-repl.git

cd clarity-repl

By default, you will be in our development branch, develop, with code that has not been released yet. If you plan to submit any changes to the code, then this is the right branch for you. If you just want the latest stable version, switch to the main branch:

git checkout main

Then build and install:

cargo install --bin clarity-repl --path .

You can then run the REPL with the command:

clarity-repl

Building the WASM library

cargo install wasm-pack
wasm-pack build --target web --release -- --no-default-features --features wasm

Initial feature set

  • [x] Eval clarity expressions (arithmetic, logic, hash functions)
  • [x] Display formatted errors
  • [x] Ability to produce WASM builds
  • [x] Full support of persisted data (define-map, define-data-var, define-fungible-token, define-non-fungible-token)

Additional desired features (not exhaustive, not prioritized)

  • [x] Display documentation
  • [ ] Display cost analysis
  • [x] Display events
  • [x] Save snippets as contracts that can be contract-call? when public functions or traits are detected
  • [x] Ability to seed stx balances
  • [x] Test WASM builds in browser
  • [x] Ability to write Clarity contracts in Jupyter notebooks
  • [ ] Easier installation (via brew, etc)