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

derelicte

v0.1.0

Published

An AltJS lang built entirely with Sweet.js macros

Downloads

3

Readme

derelicte

Derelicte is a toy altJS language implemented entirely with simple sweet.js macros. It has modules, curried functions, unions, pattern matching, lexical scope, and no this confusion. It is very inefficient, and currently lacks meaningful syntax errors.

Install

You can install derelicte via npm:

npm install -g derelicte
drl mymodule

Hello, World!

Fire up your favorite text editor and write something like this:

mod hello {
  pub def main args {
    let name = if args[0] { args[0] } else { 'world' };
    println('hello, ' + name)
  }
}

Save this as hello.drl and run it with drl hello derek. Eventually you may see something printed to the screen.

You can see the JavaScript output by calling drl --js hello.drl.

Language Tour

mod, use, pub

mod foo {
  // Import bar
  use bar

  // Import bar qualified
  use bar as b

  // Import specific things
  use bar.baz { quux, quux as q }
}

mod bar {
  // Private module level value
  a = 12

  // Public module level value
  pub a = 42
}

// Namespacing
mod bar.baz {
  // Named function definition
  pub def quux x {
    x + 42
  }
}

When using the drl binary, modules will also be resolved on the file system. foo.bar would be resolved to ./foo/bar/bar.drl or ./foo/bar.drl.

def, fn

A named function is declared using def, followed by a name and argument lists.

mod fns {
  def add a b {
    a + b
  }
  res = add(1)(2)
}

Anonymous functions are declared using fn.

mod fns {
  succ = fn x { x + 1 }
}

Functions can have multiple argument lists.

mod fns {
  // Curried
  def add x y { x + y }

  // Uncurried
  def add (x, y) { x + y } 

  // Mix and match
  def nonsense a (b, c) d { a + b + c + d }
}

Functions can have multiple statements separated by a semicolon. It will evaluate to its last expression. If the last expression ends with a semicolon, it will return null.

mod fns {
  def stmts x y {
    let a = 12;
    let b = 42;

    if x < y {
      x + a 
    } else {
      y + b
    }
  }
}

If you use an if in the middle of a function, you need to put a semicolon after it.

mod fns {
  def ifs {
    let a = 12;
    let b = 42;

    if a < b {
      foo(a)
    };

    a + b
  }
}

union

mod maybe {
  pub union Maybe {
    Nothing,
    Just(_)
  }
}

Constructors are currently very basic, and each slot can take any value. Declaring a union as pub will export its name and constructors. Constructors are all put into the module's scope.

match

mod match {
  use maybe { Nothing, Just }
  def get_or_else (x, y) {
    match x {
      Nothing => y,
      Just(a) => a
    }
  }
}

Only very simple pattern-matching is currently supported. It can match on literals or bind constructor values to names.

If you leave off the argument to match, you'll get an anonymous function that will match on its argument.

mod match {
  use maybe { Nothing, Just }
  is_nothing = match {
    Nothing => true,
    Just(_) => false
  }
}

impl

mod maybe {
  pub union Maybe {
    Nothing,
    Just(_)
  }
  impl Maybe {
    // Static property
    of = Just

    // Method
    def get_or_else self x {
      match self {
        Nothing => x,
        Just(a) => a
      }
    }
  }
}

All impl methods must take a curried self argument. Methods are always bound so you never have to worry about losing a self reference.

mod bound {
  use maybe { Just }
  get42 = Just(42).get_or_else
  
  // 42 
  value = get42(12)
}

prelude and std

The prelude and standard lib are currently very small. It just has a few functional helpers like map, filter, etc. You can access a few node modules like fs and http through the __host global.


Author

Nathan Faubion (@natefaubion)

License

MIT