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

waddle

v1.0.4

Published

[![Build Status](https://github.com/maxbarsukov/waddle/actions/workflows/main.yml/badge.svg?branch=master)](https://github.com/maxbarsukov/waddle/actions/workflows/main.yml) [![Codecov](https://codecov.io/gh/maxbarsukov/waddle/branch/master/graph/badge.sv

Downloads

1

Readme

Waddle

Build Status Codecov GitHub code size in bytes

NPM version NPM downloads License

Waddle is a strongly-typed object-oriented toy programming language whose syntax is partially inspired by Kotlin and Ruby.

  • Object-oriented language.
  • Statically typed language with type inference.
  • The last value evaluated in a method is its return value.
  • Everything is an object.

Documentation

Have a look in the examples directory to learn more.

Installation

$ npm install -g waddle

Usage

Run Repl:

waddle

or run file:

waddle examples/hello.waddle

Examples of code

Basic:

// comment

"This is a string" // res0: String = "This is a string"
"Hello, " + "Max" // res1: String = "Hello, Max"

1 + 2 // => res2: Int = 3
-2 * 3 + (1 - 2) // res3: Int = -7

2e4 // res4: Double = 20000
3.14 // res5: Double = 3.14

10.toString() // res6: String = "10"
15.+(1).*(3) // res7: Int = 48

if (true) "true" else "false" // res8: String = "true"
if ("hello" == "he" + "llo") {
  42
} else {
  -1 
} // res9: Int = 42

"hello".length() // res10: Int = 5
"how are you?".at(2) // res11: String = "w"
"abscde".replace("a", "111") // res12: String = "111bscde"

null // res13: Null = null
null.toString()

100.unary_-() // res14: Int = -100

1.instanceOf("Int") //res15: Bool = true
1.instanceOf("String") //res16: Bool = false

Booleans :

true // res0: Bool = true
false // res1: Bool = false
!false // res2: Bool = true
1 >= 3 // res4: Bool = false
2 == "hey" // res5: Bool = false
true || false // res6: Bool = true
true && true // res7: Bool = true
false.unary_!() // res8: Bool = true

Let:

let message: String = "Hello, World!" in {
  IO.println(message)
}
// type inference
let message = "Hello, World!" in {
  IO.println(message)
}

let a = 2, b = 3 in {
  a + b
} // res0: Int = 5

let a = 2, b = 3 in a + b // res1: Int = 5

While:

let i = 1 in {
  while (i <= 10) {
    IO.println(i)
    i += 1
  }
} // 1 2 3 4 5 6 7 8 9 10

Variables:

var message: String = "Hello" // message: String = Hello!
// type inference
var message1 = "Hello, World!" // message1: String = Hello!

Functions:

def add(a: Int, b: Int): Int = {
  a + b
}
// add(a: Int, b: Int): Int
add(42, 1) // res0: Int = 43

def add2(a: Int, b: Int): Int = a + b
// add2(a: Int, b: Int): Int
add2(42, 1) // res0: Int = 43

def sayHi() = IO.println("Hi!")
sayHi() // Hi!

IO:

IO.println(1 + 2) // 3
IO.println(-2 * 3 + (1 - 2)) // -7

Math:

Math // Math: Math$ = Math$@0
Math.pi() // res0: Double = 3.141592653589793
Math.log2(16) // res1: Double = 4
Math.max(16, 42) // res10: Int = 42

OOP:

class Person(firstname: String, lastname: String) {
  var age: Int = 0
  
  def firstname(): String = {
    firstname
  }
  
  def setFirstname(name: String) = {
    firstname = name
  }
  
  def whoIsPrivate() = {
    IO.println(somePrivateMethod())
  }
  
  // override func
  override def toString(): String = {
    "Person(" + firstname + ", " + lastname + ")"
   }
  
  // functions are public by default
  // private func
  private def somePrivateMethod(): String = "I'm private!"
}

// inheritence
class Employee(
  firstname: String,
  lastname: String,
  company: String
) extends Person(firstname, lastname) {
  def company(): String = company
  def setCompany(c: String) = company = c
}

var person = new Person("John", "Doe") // person: Person = Person(John, Doe)

person.whoIsPrivate() // I'm private!
IO.println(person) // Person(John, Doe)

person.firstname() // res8: String = "John"
person.setFirstname("Max")
person.firstname() // res9: String = "Max"

var employee = new Employee("John", "Doe", "company")
employee.firstname() // res10: String = "John"
employee.company() // res11: String = "company"

Fraction class in Waddle:

class Fraction(n: Int, d: Int) {
  var g: Int = gcd(Math.abs(n), Math.abs(d))

  var num: Int = n / g
  var den: Int = d / g

  def num(): Int = num
  def setNum(n: Int) = num = n / gcd(Math.abs(n), Math.abs(den))

  def den(): Int = den
  def setDen(d: Int) = den = d / gcd(Math.abs(num), Math.abs(d))

  def +(that: Fraction): Fraction = new Fraction(
        num * that.den() + den * that.num(),
        den * that.den()
      )

  def +(that: Int): Fraction = this + new Fraction(that, 1)

  def -(that: Fraction): Fraction = new Fraction(
        num * that.den() - den * that.num(),
        den * that.den()
      )

  def -(that: Int): Fraction = this - new Fraction(that, 1)
  def *(that: Fraction): Fraction = new Fraction(num * that.num(), den * that.den())
  def *(that: Int): Fraction = this * new Fraction(that, 1)
  def /(that: Fraction): Fraction = this * new Fraction(that.den(), that.num())
  def /(that: Int): Fraction = this / new Fraction(that, 1)

  override def ==(that: Object): Bool = {
      if (!that.instanceOf("Fraction"))
          false
      else {
          let frac = that as Fraction in {
              num == frac.num() && den == frac.den()
          }
      }
  }

  override def toString(): String = num + if (den > 1) "/" + den else ""

  private def gcd(a: Int, b: Int): Int = if (b == 0) a else gcd(b, a % b)
}

Super:

class A {
  def a(): String = super.toString()
}

IO.println(new A().a()) // A@0

This:

class B {
  def b(): B = this
}

var b = new B()
IO.println(b.b()) // B@2
IO.println(b.b().b().b().b().b()) // B@3

Lists: examples/list.waddle

Module system:

// dir/my_module.waddle
// Use `export` keyword to export class
export class A {
  def a(): Int = 42
}

export class B {
  def b(): Int = 13
}

// main.waddle
import A, B from "./dir/my_module"
// or
// import A, B from "./dir/my_module.waddle"
// or
// import A, B from "./dir" // to import all files recursively

IO.println(new A().a()) // 42
IO.println(new B().b()) // 13

Builtin modules:

import LinkedList from "collections/list"
// or just ...`from "collections"`

IO.println(new LinkedList()) // []

Building

Pre-reqs

To build and run this app locally you will need a few things:

Getting start

  • Clone the repository
git clone --depth=1 https://github.com/maxbarsukov/waddle.git
  • Install dependencies
cd waddle
npm install
  • Run
npm run start
  • Tests
npm test
  • Linting
npm run lint

Contributing

Bug reports and pull requests are welcome on GitHub at https://github.com/maxbarsukov/waddle. This project is intended to be a safe, welcoming space for collaboration, and contributors are expected to adhere to the code of conduct.

License

The package is available as open source under the terms of the MIT License.

Code of Conduct

Everyone interacting in the Waddle project's codebases, issue trackers, chat rooms and mailing lists is expected to follow the code of conduct.