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 🙏

© 2026 – Pkg Stats / Ryan Hefner

xenote-baklava

v1.1.0

Published

Baklava is a tool for connecting your notebook frontend with a powerful backend. It makes it easy to sync files, run code, and stay in touch with your backend processes - all from within your notebook.

Downloads

8

Readme

Baklava - Process Manager for Notebook

Baklava is a tool for connecting your notebook frontend with a powerful backend. It makes it easy to sync files, run code, and stay in touch with your backend processes - all from within your notebook.

With Baklava, you can effortlessly run code written in languages like Python, C, Java, or Rust, no matter where you are. Install it on any operating system, run it in a sandbox environment, and connect remotely via your notebook.

In a nutshell

  • Sync files seamlessly from the Notebook
  • Run processes remotely
  • Get back the streamed standard outputs
  • Use Vani, a real-time communication channel, between the processes and the Notebook

Install and Run

  1. Clone baklava git clone https://github.com/xenote-app/baklava.git
  2. Change into the baklava folder cd baklava
  3. Install dependencies npm install and then install the app globally npm install -g
  4. Create a sandbox folder somewhere
  5. Change into the sandbox folder and launch using baklava launch
  6. Connect using the Notebook.

Note: The default port for HTTP is 3456 and HTTPS is 3444

Allow HTTPS

Due to browser security, you cannot to connect xenote.com to a port/domain that is not localhost. To override this behavior you could do one of two things.

1. Use ngrok.

Ngrok create a HTTPS link that is accessible throught the internet. A command ngrok http 3456 will create a https forwarding to the http port. This link can be accessed via internet.

2. Create Unsigned SSL

  • Use command 'baklava create-cert', This will create an unsigned SSL Certificate.
  • Lets say your ip is 10.10.10.10, Navitate to https://10.10.10.10:3444 on a new tab. You will reach the security screen.
  • On the 'Click "Advanced" Click "Proceed to site" (Chrome) or "Accept the Risk" (Firefox)
  • Go back to the the notebook and try to connect again.

Overriding "config"

  • If you want to use different port you could create a new file called "config.json", and override variables. The default variables are: { httpPort: 3456, httpsPort: 3444, vaniPort: 3434, certsDir: './_certs' }