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

lofi-bundler

v1.0.1

Published

A simple typescript bundler for projects with zero dependencies

Downloads

7

Readme

lofi-bundler

A simple typescript bundler utility for projects with zero dependencies.

What does it do?

Walk through all files in your project (and only your project, sorry no node_modules or other folders) and concatenates a single copy of all files together in one typescript bundle.

Why?

  • Node isn't the only cool guy around, there is this thing called the "browser", and we need an intermediate step (ie, this project's output) to get there.
  • Typescript doesn't support anything outside of AMD and System for the browser.
  • Because sometimes a project is simple enough, and we'd like to package it for a browser, in addition to node.
  • No worrying about babel configs, AMD, or System, just good old-fashioned tscing to a single file, and transform to browser.
  • Because I can.

Getting Started

  1. install using yarn add lofi-bundler
  2. add config to your package.json:
  {
    "config": {
      "lofi-bundler": {
        "entry": "entry-file.ts",
        "target": "target-file.ts",
        "include": "optional-include-file.ts"
      }
    }
  }
  1. run the cli lofi-bundler
  2. use output ts file... Perhaps as a temporary file to run tsc on?
  3. congratulate yourself on going lofi!

API

You can as well use the methods provided from the cli programmatically:

import { traceConcat } from 'logi-bundler';
traceConcat(file)
  .then(src => fs.writeFileSync('bundle.ts', src));

Recipes

This was taken from a project (thaw.js), which is a small utility that can be used in both node and the browser.

{
  scripts: {
    "test": "jest",
    "dist": "tsc --outDir dist",
    "browser": "lofi-bundler; tsc browser.ts --target es5 --module commonjs; rm browser.ts",
    "build": "rm -rf ./dist; npm run dist; git add ./dist; npm run browser"
  }
}

Warnings

  • Default exports: Not supported, don't use them. Naming isn't guaranteed.