- 1.2.1Latest
- 1.2.0
- 1.1.10
- 1.1.9
- 1.1.8
- 1.1.7
- 1.1.6
- 1.1.5
- 1.1.4
- 1.1.3
- 1.1.2
- 1.1.1
- 1.1.0
- 1.0.8
- 1.0.7
- 1.0.6
- 1.0.5
- 1.0.4
- 1.0.3
- 1.0.2
- 1.0.1
- 1.0.0
- 0.0.0
- 0.4.1
- 0.4.0
- 0.3.9
- 0.3.8
- 0.3.7
- 0.3.6
- 0.3.5
- 0.3.4
- 0.3.3
- 0.3.1
- 0.3.0
- 0.2.5
- 0.2.4
- 0.2.3
- 0.2.2
- 0.2.1
- 0.2.0
- 0.1.3
- 0.1.2
- 0.1.1
- 0.1.0
- 0.0.28
- 0.0.27
- 0.0.26
- 0.0.25
- 0.0.24
- 0.0.23
- 0.0.22
- 0.0.21
- 0.0.20
- 0.0.19
- 0.0.18
- 0.0.17
- 0.0.16
- 0.0.15
- 0.0.14
- 0.0.13
- 0.0.11
- 0.0.12
- 0.0.10
- 0.0.9
- 0.0.8
- 0.0.7
- 0.0.6
- 0.0.5
- 0.0.4
- 0.0.3
- 0.0.2
- 0.0.1
- publish
Sculptr
Sculptr is a cli that allows users to build project scaffolding. When a user tells it to build a project, it asks them a set of questions, and based on their answer, it will write the correct project files. For example, if the user answered: Typescript
, then, SCSS
, It will write the code for a project using Typescript as a scripting language, and SCSS as a styling language.
Installation
Deno
$ deno install --unstable -qAfn sculptr https://deno.land/x/sculptr/src/index.ts
Build Web/Front/Frontend
Step 1:
- Open the folder you want to build the project in
- Run:
$ sculptr build web <platform> <name> [options]
For example
$ sculptr build front react my-new-app --typescript
This will make a my-new-app
folder in the current working directory, and initialize the project there.
It will then ask:
? Do you want use SCSS, Sass, or CSS? (YOUR_ANSWER)
In this demo, SCSS is selected. It will then output the following
Step 2:
Wrote files (21) (0.754s)
Arguments
<platform>
The type of app that sculptr creates (‘next’, or ‘react’)<name>
The name of the app. Could be a directory or a word, if the value for “name” is “.” it uses the parent folder’s name, and initializes in the parent folder
Flags
--typescript
,--ts
This sets the script to typescript--javascript
,--js
This sets the script to javascript--scss
This sets the style to scss--sass
This sets the style to sass--css
This sets the style to css
Build Api/Back/Backend
Step 1:
- Open the folder you want to build the project in
- Run:
$ sculptr build api <platform> <name> [options]
For example
$ sculptr build backend oak my-new-app --typescript
This will make a my-new-app
folder in the current working directory, and initialize the project there.
Step 2:
Wrote files (16) (0.754s)
Arguments
<platform>
The type of app that sculptr creates (‘oak’, or ‘express’)<name>
The name of the app. Could be a directory or a word, if the value for “name” is “.” it uses the parent folder’s name, and initializes in the parent folder
Flags
--typescript
,--ts
This sets the script to typescript--javascript
,--js
This sets the script to javascript
Add
Adds an asset to the current working directory
Accepted values:
tsconfig
,tsc
, orts
license
,lic
,license.txt
Flags
--log
Only log the file to the console instead of writing it-S
,--no-strict
Uses less strict typescript settings--next
Writes a tsconfig that caters to nextjs projects--react
Writes a tsconfig that caters to react projects--overwrite
Overwrites the preexisting tsconfig if it exists
$ sculptr add tsconfig
License
With license you can add any github-supported license type. For example:
$ sculptr add license wtfpl
$ sculptr add license isc
$ sculptr add l mit
$ sculptr add l 'Academic Free License'
$ sculptr add license 'GNU General Public License 3'
l
and license
are interchangeable
Note: Academic Free License v3.0
or afl-3.0
.
Note: You can use the technical name for a license Note: License type detection is based off of RegEx, so small typos generally can be overlooked.
Update/Upgrade/Install
Updates sculptr to a given version (defaults to the latest)
$ sculptr update
$ sculptr upgrade X.X.X
$ sculptr upgrade latest
$ sculptr install X.X.X