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

rsbuild-plugin-generate-file

v0.3.0

Published

A plugin for rsbuild to generate file

Downloads

98

Readme

rsbuild-plugin-generate-file

npm npm npm

rsbuild-plugin-generate-file is a rsbuild plugin which generate static file and write them to dist folder after packaging.

Usage

Install dev dependency :

yarn add rsbuild-plugin-generate-file -D
npm install rsbuild-plugin-generate-file -D

Add plugin to your rsbuild.config.ts :

// rsbuild.config.ts
import { pluginGenerateFile } from 'rsbuild-plugin-generate-file';

export default {
  plugins: [
    pluginGenerateFile([{
      type: 'json',
      output: './output.txt',
      data: {
        foo: 'bar'
      }
    }])
  ]
}

Here are the available options for configuration:

| Name | Description | Options | Defaults | |---------------|--------------------------------------------------------------------------------------------------------------------------------------|---------------------------|----------------| | type | Specifies the format type of the generated file. | json yaml template | json | | output | Defines the path to the output file that the plugin will generate. This path is relative to the dist folder. | - | ./output.txt | | template | Specifies the path to the template file. Supports ejs format template. This option is available when type is set to template. | - | - | | data | Specifies the data to be used in the generated file or to be passed into the template. | - | - | | contentType | Defines the Content-Type response returned from the dev server. If left empty, it will be inferred from the output path extension. | - | - |

In dev mode, plugin will mock file by dev server. See localhost:8080/__generate_file_list/ for more detail.

Credits

This plugin was inspired by Alicevia/vite-plugin-generate-config-into-dist and sumy7/vite-plugin-generate-file and antfu/vite-plugin-inspect

License

MIT