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

ligosnippetwp7

v1.0.0

Published

A React component for embedding Ligo code snippets on a page.

Downloads

2

Readme

A React component for embedding Ligo code snippets on a page.

Quick start

  1. Install package yarn add @ligolang/ligo-snippets
  2. Add LigoSnippet component to a page
import { LigoSnippet } from "@ligolang/ligo-snippet";

const App = () => {
    const code = `type storage is int
type parameter is
  Increment of int
| Decrement of int
| Reset
type return is list (operation) * storage
// Two entrypoints
function add (const store : storage; const delta : int) : storage is 
  store + delta
function sub (const store : storage; const delta : int) : storage is 
  store - delta
(* Main access point that dispatches to the entrypoints according to
   the smart contract parameter. *)
function main (const action : parameter; const store : storage) : return is
 ((nil : list (operation)),    // No operations
  case action of
    Increment (n) -> add (store, n)
  | Decrement (n) -> sub (store, n)
  | Reset         -> 0
  end)`

    const snippetData = {
        "language": "pascaligo",
        "name": "PascaLigo Code Snippet Example",
        "code": code    
    }
    
    return <LigoSnippet data={snippetData} />
}

render(<App />, document.getElementById("root"));

The snippetData values of language and code are required. These values determine the code displayed and the syntax highlighting. The name value is optional and will be used as the title of your code when sent to the Ligo Web IDE.

Ligo Web IDE

Ligo Snippets can be opened in the Ligo Web IDE (https://ide.ligolang.org/) by clicking the IDE button at the bottom of the snippet. The Ligo Web IDE can take in preset configurations for the available features.

Available Configurations

"name": string,      
"language": string,
"compile": {
    "entrypoint": string
},
"dryRun": {
    "entrypoint": string,
    "parameters": string,
    "storage": string,
},
"deploy": {
    "entrypoint": string,
    "storage": string,
},
"evaluateValue": {
    "entrypoint": string
},
"evaluateFunction": {
    "entrypoint": string,
    "parameters": string
}

Setting Configurations

When using the configurations to set preset default values for the Ligo Web IDE, please note that the name and language values are required. When present, these values will replace the name and language values from your snippetData. Everything else is optional.

Add the configuration in a yaml format at the top of your the code you are trying to display.

(*_*
  name: PascaLIGO Contract
  language: pascaligo
  compile:
    entrypoint: main
  dryRun:
    entrypoint: main
    parameters: Increment (1)
    storage: 0
  deploy:
    entrypoint: main
    storage: 0
  evaluateValue:
    entrypoint: ""
  evaluateFunction:
    entrypoint: add
    parameters: (5, 6)
*_*)

type action is
| Increment of int
| Decrement of int

function add (const a : int ; const b : int) : int is
  block { skip } with a + b

function subtract (const a : int ; const b : int) : int is
  block { skip } with a - b

function main (const p : action ; const s : int) :
  (list(operation) * int) is
  block { skip } with ((nil : list(operation)),
  case p of
  | Increment(n) -> add(s, n)
  | Decrement(n) -> subtract(s, n)
  end)