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

slaklang

v1.1.0

Published

html render engen

Downloads

6

Readme

slaklang Logo

about slaklang 1.1.0

auther : Damian Mostert email : [email protected] slak lang is curently a view engen for html templates, but soon will have a script compiler

using a static server

const express = require('express')
const slaklang = require('slaklang')
const app = express()
StaticUrl = "/"
StaticPath = __dirname+"/www"
app.use(StaticUrl,(req,res)=>{slaklang.express.static(StaticUrl,StaticPath,req,res)})
app.listen(8080)

once your static server is up, you can start using slak in your www file, all your slak files must end with .slak , they will handle both the GET and POST requests

using pure JavaScript works in slakLang too :)

<?_@
console.log("all java script things work :)")
_@?>

what is slak lang?

slak lang is a smart hrml render engen allowing you to use java script to build your pages, it also has built in language features, specified to build html and look simular to html, and some old php features

<DOCTYPE html>
<?_@
@html/
@head/

/{}@_
@body/
for(m=0;m<10;m++){
  echo(<<<EOT
  even echo and eot works !
  EOT>>>)
    console.log(`@ java script works here too ${m}`)
}
/{style="background:#111;color:#fff"}@_
/{}@_

_@?>
<label>HTML WORKS TOO</label>

slak labels santax

most slak labals build html parts, some are built as functions, but are still in development

@html/ /*your html tag like img button body ...*/
//the tags inside
@label/echo("hello")/@_
console.log("label built") // then you can do your scripting here
/{style="color:red",cls="main"}@_ //your css, onclick and stuff like that, only deference is class is now cls
//using css
//unfortunately I couldn’t use style as a tag as it conflicts with your style config in your tag
// so i decided to use @css as a tag
@css/
echo(`
body{
  background:blue
}
`)
/{}@_
//you can always just use the link tag for external css
@link/ /{rel="stylesheet",href="/yourcss.css"}@_
// tail wind css works with .slak files too

latest updates

<?_@
//you can also declare tag options before the tag
style is "color:#fff;background:#111;font-family:arial"
@body/
@label/
echo("Slak lang just got so much better :) ")
/{style is "color:blue"}@_
/{}@_

M is 50 plus 20 with 5// ' plus ' and ' with ' works as +
console.log(M)

X is 10 // you can use is instead of =
if(X equals 10){ // you can use equals instead of ==
//Old scholl EOT works aswell
echo(<<<EOT
<p> hello </p>
EOT with <<<EOT
<p> there </p>
EOT)//you can use with instead of +
} elseif  // both 'else if' and 'elseif' can work
(X same as 20 and Y equals 50){// you can use and instead of &&
echo(" X is 20")//you can use 'same as' instead of ===
}

C equal to 10 //can also use equal to for =

if(C smaller than 10){
  console.log("C is smaller than 10")
}elseif(C bigger than equal to 10){
  console.log("C is bigger than 10 or is 10")
}


for(Z is 0;Z smaller than equal to 10;Z grow){//you can use 'grow' for ++ and 'shrink' for --
  @p/
  echo(`Z is ${Z}`)
  /{}@_
}
_@?>
<?_@
//you can also declare tag options before the tag
style is "color:#fff;background:#111;font-family:arial"
@body/
@label/
echo("Slak lang just got so much coller ")
/{style is "color:blue"}@_
/{}@_
X is 10 plus 10 // you can use plus instead of +
Y is 50 // you can use is instead of =
if(X equals 10){ // you can use equals instead of ==
//Old scholl EOT works aswell
echo(<<<EOT
<p> hello </p>
EOT with "eh with ")//you can use with instead of +
} elseif  // both 'else if' and 'elseif' can work
(X same as 20 and Y equals 50){// you can use and instead of &&
echo(" X is 20")//you can use 'same as' instead of ===
}
for(Z is 0;Z<10;Z grow){//you can use 'grow' for ++ and 'shrink' for --
  echo(Z)
}
_@?>
<?_@ //slaklang is now almost english
X is "hey" //you can now use ' is ' as =
console.log(X)
//Handle REQUEST method
if(req.method equals "POST"){//you can now use ' equals ' as ==
  bodycolor is "red" //you can also use "~" instead of '.' if youd like
}elseif(req~method equals "GET"){//both elseif end else if work, make shure to use it like }elseif ,breaking it will make elseif not work
  bodycolor is "yellow"
}
M1 is 0
M2 is 0
if(M1 equals 0 and M2 equals 0){ // you can use and instead of &&
  console.log("M1 is MM2")
}
_@?>
<!DOCTYPE html>
<head>
  <title>hello world</title>
</head>
<body style="background:#111;color:<?_@echo(bodycolor)_@?>;font-family:arial;">
  <?_@
  bld~label(()=>{ // you can also use bld instead of the @ tags for the basic js function that the @ tags actualy use
    echo("hey there")
  },style is "color:#fff")
  //handeling GET and POST
  if(req.method == "POST"){
    @p/echo("THIS WAS A POST REQUEST")/{}@_
      echo(<<<EOT
      <form method="GET">
        <input type="submit" value="go to GET page">
      </form>
      EOT)
    }//POST REQUEST
    else if(req.method equals "GET"){
    @p/echo("THIS WAS A GET REQUEST")/{}@_
      echo(<<<EOT
      <form method="POST">
        <input type="submit" value="go to POST page">
      </form>
      EOT>>>)
    }//GET REQUEST
  _@?>
<h1>The slak tag is a cool tool for using arrays while building your HTML</h1>
<?_@for(b is 0;b<100;b++){@p/@small/echo(`hey${b+1}... `)/{}@_/{}@_}_@?>
</body>