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

vanil

v0.0.53

Published

Vanilla TSX/JSX/HTML/Markdown/CSS compiler using the Astro file format - pragmatic, zero-config static-site generator (SSG)

Downloads

93

Readme

VANIL

Join the chat at https://gitter.im/vanil-build/community

Vanilla JSX + HTML + CSS compiler and static-site generator (SSG)

VANIL is a compiler and static site generator (SSG) that combines TSX/JSX+HTML+CSS and modern web standards. Back in the day, transpilers, bundlers, source maps and frameworks have been invented to cope with web-tech limitations. However, the ancient times are over. It's time to get rid of all the complexity,
and get back to the roots and use vanilla APIs - modern vanilla code is lightweight, powerful, vastly compatible and very maintainable. The missing part has been the glue layer in between: VANIL.

VANIL uses the Astro.build template format, but it's rather meant for the land-bornes among us. This is not a fork, it's a clean-room re-implementation that pragmatically implements the original API, but extends it with a dynamic runtime.

And, no pun intended, already more stable than the original. At least, it doesn't fall apart when you use template literals ;)

Example

See examples/hellokitten

IDE Support

There is experimental support for .astro, .scss in <style> and .json5.

Please install the following extensions:

  • .astro file format support: Vanil Extension
  • auto-complete in <script> tags: TODO https://github.com/microsoft/vscode/pull/121517
  • then disable @builtin HTML Language Features as these collide with the fixed ones (see extension above)
  • SCSS IntelliSense
  • SCSS Style Tag
  • JSON5

How does it work?

In the modern world of frontend engineering, it seems like we have to accept complexity as given. However, according to caniuse, we can deploy modern JS, CSS language features and reach >95% market share now.

Thinking critically, we'll find that TSX components need no frameworks to work. Any transpiler would turn them into a JSON tree, functionally describing a DOM structure. It takes only a trivial render() function and a real or mocked DOM API to construct a DOM tree.

This is exactly what happens in Vanil:

  • on the server side, TSX is turned into a virtual DOM tree which is then, using a tree transform operation, turned into an HTML string
  • however, the same TSX written in a <script> tag is transpiled to a functional representation and rendered as a DOM tree fragment at runtime

Using a small runtime library that is inspired by jQuery, component or page code can mutate the real DOM with those fragments explicitly -- there is no need for any framework to use the power of component-oriented frontend-engineering.

Same for CSS-in-JS solutions: In Vanil, it's perfectly valid to write CSS code or SCSS code in <style> tags or load a stylesheet via <link />. The lang attribute indicates the language dialect (e.g. scss). Evaluating the <style> content as a JavaScript template string in the exact same SSG Node.js execution context allows direct templating of CSS in JS. Post-processing with PostCSS leverages all benefits of auto-prefixing, and CSS selector nesting.

Again, there is no need for any framework or complex tooling.

Finally, some code generators and filesystem automation, including hooks allow full control over the very internals of the Vanil compiler. Even the configuration of the transpilation can be directly mutated, using e.g. the onContext hook. Implementing one simple function is enough -- no complex setup.

Most configuration can be directly managed in the project package.jsons vanil object.

Here are a few ideas on how it feels to work with Vanil:

  • each page you want to have is saved as $pageName.astro
  • you fetch the initial state data via Node.js fetch() on top of that file
  • you write your initial TSX+HTML+CSS code below
  • for interactive code to be run in the browser, use <script> (and this code also supports import, require and any module format)
  • the interactive code has a tiny runtime lib to use TSX at runtime in-browser
  • to define your pages routes, you just create folders and files with dynamic names: pages/index.astro, pages/blog/[blogPostSlug].astro, etc.
  • of course you can use TSX functional components in an isomorphic way - like in React
  • the Vanil compiler will render all HTML files to dist/**/*.html
  • the hot-module-reload (HMR) devServer brings in perfect developer experience
  • there is a preview HTTP server to preview the results
  • the config and hooks API allows to customize every compiler-internal config
  • file loaders allow to load and parse any file format (maybe via your own custom loaders)
  • Vanil is super-fast and light on resources
  • Vanil optimizes for code readability in development and file size in production
  • language level is automatically adapted based on browserslist confing in your package.json
  • finally, standard hooks generate sitemap.xml, robots.txt, (TODO) serviceWorker.js, (TODO) manifest.json according to the config

Near-term roadmap (till beta release)

  • feat: throw error when fetchContent or resolve is used in .ts or .tsx code included by .astro components or hooks
  • build docs website with Vanil; publish to netlify
  • build homepage website with Vanil; publish to vercel
  • publish examples to github pages
  • basic unit tests
  • basic integration tests

Mid-term roadmap

  • feat: implement a codeguide https://codeguide.co/#css-import
  • perf: imagemin hook https://github.com/imagemin/imagemin + https://www.npmjs.com/package/imagemin-svgo
  • perf: CLI: run it all using transpiled code, not with ts-node
  • perf: use context.paths.* instead of getter functions
  • feat: npm vanil init hook
  • refactor: rewrite import split parser (support multi-line dynamic / sync imports)
  • perf: linkedom can be probably constructed directly in tsx()
  • perf: better codeCache with fileOrigin map, FNV hash algo and bloom filter, also cross-page/component cases
  • perf: generator for serviceWorker.js and caching using FNV hash algo and bloom filter
  • feat: generator for manifest.json
  • test: 100% test coverage; currently: 0%
  • feat: Pagination support for getStaticPaths
  • feat: auto-schema-generating GraphQL client and on-the-fly OpenAPI client API generator / client
  • perf: use cluster for build parallelization
  • security: vm2 secure mode support
  • feat: download attribute on all elements with href and src to download files to dist dir and use the dist target path as src
  • feat: check to implement webhint / https://webhint.io/docs/user-guide/hints/hint-typescript-config/target/#what-does-the-hint-check