Security News
pnpm 10.0.0 Blocks Lifecycle Scripts by Default
pnpm 10 blocks lifecycle scripts by default to improve security, addressing supply chain attack risks but sparking debate over compatibility and workflow changes.
bamboo-core
Advanced tools
POSIX/Linux system call API implemented in JavaScript (Typescript).
This lib uses libsys
to execute system calls from JavaScript.
This is part of jskernel
project which long-term goal is to make Node.js dependency free.
This library is in prototype stage, some things may not work, very little error checking, API will change.
See [libaio
] for asynchronous implementation of sockets using libjs
.
Below are some basic synchronous (blocking) examples.
Read from file:
import * as libjs from 'libjs';
var filepath = '/share/libsys/examples/read.txt';
var fd = libjs.open(filepath, libsys.FLAG.O_RDONLY);
if(fd > -1) {
var buf = new Buffer(1024);
var bytes_read = libjs.read(fd, buf);
console.log('Bytes read: ', bytes_read);
console.log(buf.toString().substr(0, bytes_read));
} else {
console.log('Error: ', fd);
}
Run stat()
on file:
import * as libjs from 'libjs';
import * as fs from 'fs';
var filepath = '/share/libsys/examples/read.txt';
var stats = libjs.stat(filepath);
console.log(stats);
console.log(fs.statSync(filepath));
Execute simple HTTP GET
request:
import * as libjs from 'libjs';
var fd = libjs.socket(libjs.AF.INET, libjs.SOCK.STREAM, 0);
var addr_in: libjs.sockaddr_in = {
sin_family: libjs.AF.INET,
sin_port: libjs.htons32(80),
sin_addr: {
s_addr: new libjs.Ipv4('192.168.1.150'),
},
sin_zero: [0, 0, 0, 0, 0, 0, 0, 0],
};
libjs.connect(fd, addr_in);
libjs.write(fd, 'GET / \n\n');
setTimeout(() => {
var buf = new Buffer(1000);
var bytes = libjs.read(fd, buf);
console.log(buf.toString().substr(0, bytes));
libjs.close(fd);
}, 20);
A basic echo server:
import * as libjs from 'libjs';
var fd = libjs.socket(libjs.AF.INET, libjs.SOCK.STREAM, 0);
var serv_addr: libjs.sockaddr_in = {
sin_family: libjs.AF.INET,
sin_port: libjs.hton16(8080),
sin_addr: {
s_addr: new libjs.Ipv4('0.0.0.0'),
},
sin_zero: [0, 0, 0, 0, 0, 0, 0, 0],
};
libjs.bind(fd, serv_addr);
libjs.listen(fd, 10);
var client_addr_buf = new Buffer(libjs.sockaddr_in.size);
var sock = libjs.accept(fd, client_addr_buf);
setInterval(() => {
var msg = new Buffer(255);
var bytes = libjs.read(sock, msg);
var str = msg.toString().substr(0, bytes);
libjs.write(sock, str);
}, 20);
// Now telnet to your server and talk to it:
// telnet 127.0.0.1 8080
read(fd: number, buf: Buffer): number;
write(fd: number, buf: string|Buffer): number;
open (pathname: string, flags: defs.FLAG, mode?: defs.MODE): number;
close(fd: number): number;
stat(filepath: string): defs.stat;
lstat(linkpath: string): defs.stat;
function fstat(fd: number): defs.stat;
lseek(fd: number, offset: number, whence: number): number;
mmap(addr: number, length: number, prot: number, flags: number, fd: number, offset: number): number;
munmap(addr: Buffer, length: number): number;
socket(domain: defs.AF, type: defs.SOCK, protocol: number): number;
connect(fd: number, sockaddr: defs.sockaddr_in): number;
bind(fd: number, sockaddr: defs.sockaddr_in): number;
listen(fd: number, backlog: number): number;
accept(fd: number, buf: Buffer): number;
accept4(fd: number, buf: Buffer, flags: defs.SOCK): number;
shutdown(fd: number, how: defs.SHUT): number;
sendto(fd: number, buf: Buffer, flags: defs.MSG = 0, addr?: defs.sockaddr): number;
send(fd: number, buf: Buffer, flags: defs.MSG = 0): number;
getpid();
getppid();
getuid();
geteuid();
getgid();
getegid();
fcntl(fd: number, cmd: defs.FCNTL, arg?: number): number;
epoll_create(size: number): number;
epoll_create1(flags: defs.EPOLL): number;
epoll_wait(epfd: number, buf: Buffer, maxevents: number, timeout: number): number;
epoll_ctl(epfd: number, op: defs.EPOLL_CTL, fd: number, epoll_event: defs.epoll_event): number;
FAQs
Node.js standard library in pure JavaScript
The npm package bamboo-core receives a total of 1 weekly downloads. As such, bamboo-core popularity was classified as not popular.
We found that bamboo-core demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
pnpm 10 blocks lifecycle scripts by default to improve security, addressing supply chain attack risks but sparking debate over compatibility and workflow changes.
Product
Socket now supports uv.lock files to ensure consistent, secure dependency resolution for Python projects and enhance supply chain security.
Research
Security News
Socket researchers have discovered multiple malicious npm packages targeting Solana private keys, abusing Gmail to exfiltrate the data and drain Solana wallets.