Skip to content
This repository has been archived by the owner on Jan 20, 2025. It is now read-only.

Releases: txthinking/jb

v20231203

03 Dec 15:08
Compare
Choose a tag to compare
  • Fix: Illegal instruction
  • Add some new functions

v20231103

04 Nov 02:13
Compare
Choose a tag to compare
#!/usr/bin/env jb

$`ls -l`

v20231101

02 Nov 03:01
Compare
Choose a tag to compare

built-in Web API such as fetch

var res = await fetch('https://www.txthinking.com');

built-in node

import os from 'node:os';                                                                             
                                                   
echo(os.homedir());  

built-in bun

Bun.serve({
    port: 8080,
    hostname: '127.0.0.1',                                                                                                                                                                                  
    fetch(req) {
        return new Response("jb!");
    },    
});                 

v20230822

22 Aug 15:17
Compare
Choose a tag to compare
$1 remove echo

v20230607

07 Jun 13:13
Compare
Choose a tag to compare

env('name', 'value')

v20230606

05 Jun 10:34
Compare
Choose a tag to compare
Merge branch 'master' of github.com:txthinking/jb

v20230605

05 Jun 00:39
Compare
Choose a tag to compare
bugfix