https://github.com/architect/create
Module to bootstrap Architect projects, and idempotently create new project resources
https://github.com/architect/create
Last synced: about 1 year ago
JSON representation
Module to bootstrap Architect projects, and idempotently create new project resources
- Host: GitHub
- URL: https://github.com/architect/create
- Owner: architect
- License: apache-2.0
- Created: 2019-08-30T15:33:44.000Z (almost 7 years ago)
- Default Branch: main
- Last Pushed: 2024-07-11T18:20:39.000Z (almost 2 years ago)
- Last Synced: 2025-04-13T17:06:05.528Z (about 1 year ago)
- Language: JavaScript
- Homepage: https://arc.codes
- Size: 315 KB
- Stars: 7
- Watchers: 4
- Forks: 6
- Open Issues: 0
-
Metadata Files:
- Readme: readme.md
- Changelog: changelog.md
- Contributing: .github/contributing.md
- License: LICENSE
- Code of conduct: .github/code_of_conduct.md
Awesome Lists containing this project
README
[
](https://www.npmjs.com/package/@architect/create)
## [`@architect/create`](https://www.npmjs.com/package/@architect/create)
> Architect Create: Bootstrap new Architect projects, and idempotently create new project resources
[](https://github.com/architect/create/actions?query=workflow%3A%22Node+CI%22)
## Create a new Architect project
```
npm init @architect [--runtime [node, deno, ruby, python]] [project name and/or path]
```
Example:
> `npm init @architect` ......... create project named for current dir in current dir
> `npm init @architect ./` ...... create project named for current dir in current dir
> `npm init @architect foo` ..... create project named `foo` in current dir
> `npm init @architect ./foo` ... create `./foo` dir and project named `foo` that dir
> `npm init @architect ../foo` .. create `../foo` dir and project named `foo` that dir
> `npm init @architect /foo` .... create `/foo` dir, creates project named `foo` that dir
> `npm init @architect ../` ..... create project in .. for named for whatever .. is named