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

my-code-viewer

v1.0.2

Published

view code in html.

Downloads

3

Readme

my-code-viewer

A web development code viewer based on highlight.js.

Quick Start

Usage

This is an example which uses a build-in highlight.js lib as the code renderer.

import CodeViewer from 'my-code-viewer';
import HL from 'my-code-viewer/hl.web';
import 'my-code-viewer/dist/style.css';
import 'my-code-viewer/dist/hl.web.css';

// 1. create a viewer instance.
const viewer = new Codeviewer();

// 2. init with a renderer.
viewer.useRenderer(HL.highlightBlock);

// 3. load your files data: Array<IFile>
viewer.loadFiles(YOUR_FILES);

// 4. append element
document.body.appendChild(viewer.rootNode);

File Data Structure

You can view the example in src/example.json.

interface IFile {
  // your filename
  filename: string;
  // lang: javascript, typescript, sass...
  lang?: string;
  // if it is a file, put content here.
  data?: string;
  // if it is a dir,
  dir?: boolean;
  // files in this dir.
  children?: IFile[];
}

Current Lang Support

The built-in highlight.js lib currently support these languages.

  1. typescript
  2. javascript
  3. stylus
  4. scss
  5. less
  6. glsl
  7. json

If your want to support more languages:

// HL is the same instance as created from highlight.js
hljs.registerLanguage('javascript', javascript);

Build Your Customer Renderer

This is an example for those who want to build your renderer.

import CodeViewer from 'my-code-viewer';
import 'my-code-viewer/dist/style.css';

const viewer = new Codeviewer();

// Use your renderer.
viewer.useRenderer((element: HTMLPreElement) => {
  // This first param is the pre element that contains your code.
});

viewer.loadFiles(YOUR_FILES);
document.body.appendChild(viewer.rootNode);

Make Your File List

Here is a tool for you to create your-file-list.json.

// In node env.
const path = require('path');
const fileSearcher = require('my-code-viewer/tools/file-searcher');

// This tool will only search for the supported-languages files as mentioned above.
// If you want to add more languages, just:
fileSearcher.addRules('json', /\.json$/);

// @function makeList
// @param {string[]} files
// @param {string} baseURL
fileSearcher.makeList(['src'], __dirname)
  .toFile(path.resolve(__dirname, 'data'), 'my-file-list.json');

For more information, you can look at the source code or the /build/local-example.js as an example.

Road Map

  1. customize lang support and style.