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

@tutao/tutanota-build-server

v3.96.3

Published

## Synopsis

Downloads

30

Readme

Tutanota Build Tools

Synopsis

The easiest way to use the build tools, is to set up a build server using BuildServerClient.js:

import {BuildServerClient} from "./buildSrc/BuildServerClient.js"

const buildServerClient = new BuildServerClient()

buildServerClient.buildWithServer({
	forceRestart: true,
	builder: path.resolve("./buildSrc/Builder.js"),
	watchFolders: opts.watch ? [path.resolve("src")] : null,
	buildOpts: {clean: true},
	webRoot: path.resolve(('../build')),
	spaRedirect: true,
})
.then(
	console.log("Build finished")
)
.catch(
	console.log("Build failed")
)

You also need to provide a builder with an appropriate build() function:

export async function build({clean}, {devServerPort, watchFolders}, log) {
	// Build specific parameter passed from buildWithServer()
	if (clean) {
		doClean()
	}
	// use the provided log method to appenend to build server log file and print to STDOUT
	log("Starting build")
	return generateBundles()
}

Components

Build Server

The build server (BuildServer.js) provides all functionality to build our code. This includes running a local devServer, watching for changes in source code and re-triggering builds. It can be used programatically from javascript code and invoked via the commandline (using BuildServerStarter.js).

Dev Server, Single Page Applications and Hot Module Replacement

If you speficy a devServerPort and webRoot, the BuildServer will start a devServer listening on devServerPort serving webRoot. If you enable spaRedirect the devServer will set a route to catch any requests and redirect them to the site's base URL appending the originally requested URL as a query parameter. The latter can be used to serve Single Page Applications (SPAs). If you define watchFolders with the build server, any changes files within the watched folders will trigger a rebuild of the affected bundles. Any changes will be propagated to the devServer using Hot Module Replacement (HMR).

Build Server Factory

The build server factory provides a simplified programmatic interface for starting a build server instance in a new operating system process. It provides some IPC handling and should be the preferred way of starting a build server.

Build Server Client

Build server client uses the build server factory to bootstrap a build server when required, takes care of connection handling and forwards build commands to the build server. Using this class in your Makefile.js or build script is the recommended way of interacting with the build server.

Builders

The build server makes little assumption about what is built and how. The logic to execute the actual build process must be provided by the client in form of a Builder. Every Builder must have a build() function that takes three arguments:

  1. Build parameters: An object containing arbitrary data. If you need to pass any data from your Makefile to your your builder, you can pass an object to the build server client's buildWithServer() method. This object will be passed through to the Builder without the build server or other components in the build chain making any assumptions about its content.
  2. Server parameters: Contains the build server's configuration parameters. You probably won't need it.
  3. Log method: Log method provided by the build server. The builder can use this method to append to the build server's log file. If using the whole build toolchain including build server client, any messages passed to the log method will also be printed to STDOUT of the client process, i.e. your Makefile.

In addition to the build() function, a Builder can define a preBuild() and postBuild() function. These methods will be called by the BuildServer before/after calling the build() function itself. Both methods accept a log method (see 3. above) as an argument.