All Projects → avajs → Create Ava

avajs / Create Ava

Licence: mit
Add AVA to your project

Programming Languages

javascript
184084 projects - #8 most used programming language

Projects that are alternatives of or similar to Create Ava

Cli Spring Boot Scaffold
command line for generate crud and configs for spring boot projects
Stars: ✭ 113 (+707.14%)
Mutual labels:  cli, generate, scaffold
Scaffdog
🐶 scaffdog is Markdown driven scaffolding tool.
Stars: ✭ 237 (+1592.86%)
Mutual labels:  cli, scaffold
Webpack Cli
webpack CLI provides the interface of options webpack uses in its configuration file. The CLI options override options passed in the configuration file.
Stars: ✭ 2,270 (+16114.29%)
Mutual labels:  cli, scaffold
Fastify Cli
Run a Fastify application with one command!
Stars: ✭ 260 (+1757.14%)
Mutual labels:  cli, scaffold
Think Builder
A command line toolit to build applications' CRUD/mvc scaffold for thinkphp v6. 用于生成 thinkphp v6 增查改删脚手架代码的命令行工具。
Stars: ✭ 105 (+650%)
Mutual labels:  cli, scaffold
Template
A super-simple way to create new projects based on templates.
Stars: ✭ 120 (+757.14%)
Mutual labels:  cli, scaffold
Hare
🐇 Application boilerplate based on Vue.js 2.x, Koa 2.x, Element-UI and Nuxt.js
Stars: ✭ 258 (+1742.86%)
Mutual labels:  scaffold, ava
Cra Generate
Scaffold a React component.
Stars: ✭ 78 (+457.14%)
Mutual labels:  cli, scaffold
Summoner
🔮 🔧 Tool for scaffolding batteries-included production-level Haskell projects
Stars: ✭ 577 (+4021.43%)
Mutual labels:  cli, scaffold
Arkit
JavaScript architecture diagrams and dependency graphs
Stars: ✭ 671 (+4692.86%)
Mutual labels:  cli, generate
Swiftkit
Start your next Open-Source Swift Framework 📦
Stars: ✭ 785 (+5507.14%)
Mutual labels:  cli, generate
Awesome React Generator
No more clicking around to create files in your react project! Awesome React Generator is Command Line Tool that let's you scaffold your components without leaving your terminal.
Stars: ✭ 98 (+600%)
Mutual labels:  cli, scaffold
Project Name
Get the name of a project from package.json, git config, or basename of the current working directory.
Stars: ✭ 8 (-42.86%)
Mutual labels:  generate, scaffold
Swiftplate
Easily generate cross platform Swift framework projects from the command line
Stars: ✭ 1,746 (+12371.43%)
Mutual labels:  cli, generate
Angular Librarian
An Angular 2+ scaffolding setup for creating libraries
Stars: ✭ 92 (+557.14%)
Mutual labels:  cli, scaffold
vue-boilerplate
An opinionated Vue.js 2 boilerplate with Vue Router, AVA and Istanbul
Stars: ✭ 27 (+92.86%)
Mutual labels:  scaffold, ava
Generate
A new command line tool and developer framework for scaffolding out GitHub projects. Generate offers the robustness and configurability of Yeoman, the expressiveness and simplicity of Slush, and more powerful flow control and composability than either.
Stars: ✭ 238 (+1600%)
Mutual labels:  generate, scaffold
Drupal Console
The Drupal CLI. A tool to generate boilerplate code, interact with and debug Drupal.
Stars: ✭ 913 (+6421.43%)
Mutual labels:  cli, scaffold
Ava
Node.js test runner that lets you develop with confidence 🚀
Stars: ✭ 19,458 (+138885.71%)
Mutual labels:  cli, ava
Mrm
Codemods for your project config files
Stars: ✭ 900 (+6328.57%)
Mutual labels:  cli, scaffold

create-ava Build Status: Linux Build status: Windows

Add AVA to your project

CLI

$ npm init ava [options]

API

$ npm install create-ava

Usage

const createAva = require('create-ava');

(async () => {
	await createAva();
})();

createAva(options?)

Returns a Promise.

options

Type: object

cwd

Type: string
Default: process.cwd()

Current working directory.

args

Type: string[]
Default: CLI arguments (process.argv.slice(2))

For instance, with the arguments ['--foo', '--bar'], the following will be put in package.json:

{
	"name": "awesome-package",
	"scripts": {
		"test": "ava --foo --bar"
	}
}

next

Type: boolean
Default: false

Install [email protected] instead of ava.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].