Home Explore Blog CI



nushell

commands/categories/generators.md
ae2af154821c47116bd7b23b744d869377151efc6b9e8e3b00000003000002ee
---
editLink: false
contributors: false
---

# Generators

<script>
  import pages from '@temp/pages'
  export default {
    computed: {
      commands() {
        return pages
          .filter(p => p.path.includes('/commands/docs/'))
          .filter(p => p.frontmatter.categories.includes('generators'))
          .sort((a,b) => (a.title > b.title) ? 1 : ((b.title > a.title) ? -1 : 0));
      }
    }
  }
</script>

<table>
  <thead>
    <tr>
      <th>Command</th>
      <th>Description</th>
    </tr>
  </thead>
  <tbody>
    <tr v-for="command in commands">
       <td><a :href="$withBase(command.path)">{{ command.title }}</a></td>
       <td style="white-space: pre-wrap;">{{ command.frontmatter.usage }}</td>
    </tr>
  </tbody>
</table>

Chunks
511c227f (1st chunk of `commands/categories/generators.md`)
Title: Generators Commands
Summary
This section lists available generator commands designed to streamline and automate development tasks. Each command is presented in a table with 'Command' and 'Description' columns. The 'Command' column displays the title of each command, hyperlinked to its documentation page for detailed information about functionalities, options, and usage examples. The 'Description' column offers a concise summary of the command's purpose and usage, providing a quick understanding of its function. The generators are filtered by those that include '/commands/docs/' in their path and include 'generators' in their categories. This structured presentation enables developers to efficiently browse, understand, and utilize the generator commands to enhance their workflow and productivity.