Socket
Socket
Sign inDemoInstall

@astrojs/compiler

Package Overview
Dependencies
Maintainers
3
Versions
356
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@astrojs/compiler

Astro’s [Go](https://golang.org/) + WASM compiler.


Version published
Weekly downloads
391K
increased by0.58%
Maintainers
3
Weekly downloads
 
Created

What is @astrojs/compiler?

@astrojs/compiler is a package designed to compile Astro components into static HTML and JavaScript. It is part of the Astro framework, which is focused on building fast, content-focused websites. The compiler transforms Astro component files (.astro) into optimized static assets.

What are @astrojs/compiler's main functionalities?

Compile Astro Components

This feature allows you to compile Astro component code into static HTML and JavaScript. The `compile` function takes Astro code as input and returns a promise that resolves to the compiled result.

const { compile } = require('@astrojs/compiler');
const astroCode = `<div>Hello, World!</div>`;
compile(astroCode).then(result => {
  console.log(result);
});

Transform Astro Files

The `transform` function is used to transform Astro files into a format that can be further processed or optimized. It takes the content of an Astro file and returns a promise that resolves to the transformed result.

const { transform } = require('@astrojs/compiler');
const astroFileContent = `<div>Hello, World!</div>`;
transform(astroFileContent).then(result => {
  console.log(result);
});

Optimize Output

This feature allows you to optimize the output of the compiled Astro components. By passing an options object with `optimize: true`, the compiler will produce optimized static assets.

const { compile } = require('@astrojs/compiler');
const astroCode = `<div>Hello, World!</div>`;
compile(astroCode, { optimize: true }).then(result => {
  console.log(result);
});

Other packages similar to @astrojs/compiler

FAQs

Package last updated on 14 Aug 2024

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc