Skip to content
#

scaffold

Here are 754 public repositories matching this topic...

Get the rocks out of your socks! Assemble makes you fast at web development! Used by thousands of projects for rapid prototyping, themes, scaffolds, boilerplates, e-books, UI components, API documentation, blogs, building websites/static site generator, an alternative to Jekyll for gh-pages and more! Gulp- and grunt-friendly.

  • Updated Jun 16, 2019
  • CSS
jstayton
jstayton commented Aug 30, 2021

It would be great if ESM projects could export const options when using the --options flag.

Like this:

export default async (fastify, opts) => {
  // ...
}

export const options = {
  maxParamLength: 200,
}

For now, this seems to work:

async function server(fastify, opts) {
  // ...
}

server.options = {
  maxParamLength: 200,
}

export default serv

Improve this page

Add a description, image, and links to the scaffold topic page so that developers can more easily learn about it.

Curate this topic

Add this topic to your repo

To associate your repository with the scaffold topic, visit your repo's landing page and select "manage topics."

Learn more