Home / File/ memory-default.js — astro Source File

memory-default.js — astro Source File

Architecture documentation for memory-default.js, a javascript file in the astro codebase. 2 imports, 0 dependents.

Entity Profile

Dependency Diagram

graph LR
  216fe01f_2d97_9501_a24a_5c78f8458c69["memory-default.js"]
  2ec933b1_5eb0_6df7_64be_172f9299459c["_util.js"]
  216fe01f_2d97_9501_a24a_5c78f8458c69 --> 2ec933b1_5eb0_6df7_64be_172f9299459c
  5d6d1861_a18d_b246_cd94_08889ab7e74c["promises"]
  216fe01f_2d97_9501_a24a_5c78f8458c69 --> 5d6d1861_a18d_b246_cd94_08889ab7e74c
  style 216fe01f_2d97_9501_a24a_5c78f8458c69 fill:#6366f1,stroke:#818cf8,color:#fff

Relationship Graph

Source Code

import fs from 'node:fs/promises';
import { loremIpsum } from './_util.js';

/**
 * @param {URL} projectDir
 */
export async function run(projectDir) {
	await fs.rm(projectDir, { recursive: true, force: true });
	await fs.mkdir(new URL('./src/pages/blog', projectDir), { recursive: true });
	await fs.mkdir(new URL('./src/content/blog', projectDir), { recursive: true });

	const promises = [];

	for (let i = 0; i < 100; i++) {
		const content = `\
---
const i = ${i};
---

<span>{i}</span>
`;
		promises.push(
			fs.writeFile(new URL(`./src/pages/page-${i}.astro`, projectDir), content, 'utf-8'),
		);
	}

	for (let i = 0; i < 100; i++) {
		const content = `\
# Article ${i}

${loremIpsum}
`;
		promises.push(
			fs.writeFile(new URL(`./src/content/blog/article-${i}.md`, projectDir), content, 'utf-8'),
		);
	}

	for (let i = 0; i < 100; i++) {
		const content = `\
# Post ${i}

${loremIpsum}
`;
		promises.push(
			fs.writeFile(new URL(`./src/content/blog/post-${i}.mdx`, projectDir), content, 'utf-8'),
		);
	}

	await fs.writeFile(
		new URL(`./src/pages/blog/[...slug].astro`, projectDir),
		`\
---
import { getCollection, render } from 'astro:content';
export async function getStaticPaths() {
  const blogEntries = await getCollection('blog');
  return blogEntries.map(entry => ({
    params: { slug: entry.id }, props: { entry },
  }));
}
const { entry } = Astro.props;
const { Content } = await render(entry);
---
<h1>{entry.data.title}</h1>
<Content />
`,
		'utf-8',
	);

	await Promise.all(promises);

	await fs.writeFile(
		new URL(`./src/content.config.ts`, projectDir),
		`\
import { defineCollection } from 'astro:content';
import { z } from 'astro/zod';
import { glob } from 'astro/loaders';

const blog = defineCollection({
	loader: glob({ pattern: '**/*.{md,mdx}', base: './src/content/blog' }),
	schema: z.object({
		title: z.string(),
	}),
});

export const collections = { blog };
`,
		'utf-8',
	);

	await fs.writeFile(
		new URL('./astro.config.js', projectDir),
		`\
import { defineConfig } from 'astro/config';
import mdx from '@astrojs/mdx';

export default defineConfig({
  integrations: [mdx()],
});`,
		'utf-8',
	);
}

Subdomains

Functions

Dependencies

Frequently Asked Questions

What does memory-default.js do?
memory-default.js is a source file in the astro codebase, written in javascript. It belongs to the PerformanceBenchmarking domain, ProjectGenerator subdomain.
What functions are defined in memory-default.js?
memory-default.js defines 1 function(s): run.
What does memory-default.js depend on?
memory-default.js imports 2 module(s): _util.js, promises.
Where is memory-default.js in the architecture?
memory-default.js is located at benchmark/make-project/memory-default.js (domain: PerformanceBenchmarking, subdomain: ProjectGenerator, directory: benchmark/make-project).

Analyze Your Own Codebase

Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.

Try Supermodel Free