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

jsbook-audrynyonata

v1.2.1

Published

[![Open in Github gh-pages](https://img.shields.io/badge/Open%20In-Github%20gh--pages-blue?logo=github)](https://audrynyonata.github.io/jsbook/) [![npm version](https://img.shields.io/npm/v/jsbook-audrynyonata.svg)](https://www.npmjs.com/package/jsbook-au

Downloads

14

Readme

jsbook-audrynyonata

Open in Github gh-pages npm version

JSBook

Welcome to JSBook!

This is an interactive coding environment. You can write Javascript, see it executed, and write comprehensive documentation using markdown.
- Click any text cell to edit it
- The code in each code editor is all joined together into one file. If you define a variable in cell #1, you can refer to it in any following cell!
- You can show any React component, string, number, or anything else by calling the `print` function. This is a function built into this environment. Call `print` multiple times to show multiple values
- Re-order or delete cells using the buttons on the top right
- Add new cells by hovering on the divider between each cell

If installed with the cli, you can get all of your changes saved into a file. As example, try running `npx jsbook-audrynyonata serve example.js`. All the text and code you write will be saved to the `<your-dir>/example.js` file.

Quick Start

Via npx:

npx jsbook-audrynyonata@latest serve

By default, this will create a local file with name notebook.js that will be hosted in the default port=4005. Navigate to http://localhost:4005 to edit the file.

You can also directly specify another port number or file that you want to open via additional command line options.

npx jsbook-audrynyonata@latest serve [options] [filename]

# Set jsbook to run in port=8000
npx jsbook-audrynyonata@latest serve --port 8000

# For example, to create a jsbook file named `notes.js`
npx jsbook-audrynyonata@latest serve notes.js

# Run jsbook and open `notes.js` in a specified port=4000
npx jsbook-audrynyonata@latest serve --port 4000 notes.js

Via NPM Global installation:

npm install -g jsbook-audrynyonata@latest

Then, similarly to above (same command line options will also works), run:

jsbook-audrynyonata serve

Features

  • Code snippet & preview
  • Markdown editor
  • Dynamic modules import
  • Cumulative code execution
  • In-browser bundling
  • Cache layer
  • Data persistence

Tips

You can show any React component, string, number, or anything else by calling the print function. This is a function built into the JSBook environment.

The function print(value, end) takes 2 arguments.

  • The first parameter is the component or any value that we want to print.

  • The second argument is optional. By default, a newline character is used as ending/trailing character after every value is printed. To override this behavior, we can set a custom char as delimiter. For example, to print in a single line we can use: print(value, end='').

Example:

// print list
const fruits = ['Banana', 'Orange', 'Mango', 'Apple'];
print(fruits);

// print each entry into a new line
print('-----------------------------------------');
fruits.forEach((fruit) => print(fruit));

// print (w/ custom delimiter)
print('-----------------------------------------');
fruits.forEach((fruit) => print(fruit, (end = '. ')));

Result:

Development

  1. Install dependencies with legacy-peer-deps and link local packages versions. Note: the extra double-dash is needed
lerna bootstrap -- --legacy-peer-deps
  1. Compile packages, start react dev server, and watch outputs
lerna run start -- parallel
  1. Launch CLI
cd jsbook/packages/cli/dist
node index.js serve
  1. (Optional) Bump version and publish to NPM
lerna publish

Featured in this project

@monaco-editor/react @uiw/react-md-editor axios bulmaswatch build-wasm commander cors esbuild express http-proxy-middleware jscodeshift localforage monaco-jsx-highlighter prettier react react-app-rewired react-dom react-redux react-resizable react-scripts redux redux-thunk typescript