
Product
Reachability for Ruby Now in Beta
Reachability analysis for Ruby is now in beta, helping teams identify which vulnerabilities are truly exploitable in their applications.
A universal creations manager, to scaffold, publish, version, navigate and manage all of your creations, code-related or not!
A universal creations manager, to scaffold, publish, version, navigate and manage all of your creations, code-related or not!
$ npm install -g creations
$ creations COMMAND
running command...
$ creations (-v|--version|version)
creations/0.5.0 linux-x64 node-v13.11.0
$ creations --help [COMMAND]
USAGE
$ creations COMMAND
...
creations add THING NAMEcreations archive [NAME]creations configcreations debugcreations delete [NAME]creations goto [CREATION]creations help [COMMAND]creations idea [PROJECT] IDEAcreations iteration [VERSION]creations listcreations move [NAME] [NEW-DIRECTORY]creations new TYPE NAMEcreations open [NAME]creations publishcreations regen-recordscreations register DIRECTORY TYPE [NAME]creations rename [NAME] [NEW-NAME]creations scan [DIRECTORY]creations unarchive [NAME]creations unregister [NAME]creations add THING NAMEAdd a new THING named NAME to the current creation. "things" need to be added in the creation type's configuration.
USAGE
$ creations add THING NAME
OPTIONS
-c, --creation=creation
-h, --help show CLI help
-v, --debug
EXAMPLES
$ creations add component ModalAddHomework
$ creations add resource background.png
See code: src/commands/add.ts
creations archive [NAME]Archive a creation
USAGE
$ creations archive [NAME]
OPTIONS
-c, --creation=CREATION-ID Use this creation instead of the current. Only has effect on commands relying on the
current creation.
-h, --help show CLI help
-v, --debug
See code: src/commands/archive.ts
creations configManage creations' configuration
USAGE
$ creations config
OPTIONS
-c, --creation=CREATION-ID Use this creation instead of the current. Only has effect on commands relying on the
current creation.
-h, --help show CLI help
-v, --debug
See code: src/commands/config.ts
creations debugUSAGE
$ creations debug
OPTIONS
-c, --creation=CREATION-ID Use this creation instead of the current. Only has effect on commands relying on the
current creation.
-h, --help show CLI help
-v, --debug
See code: src/commands/debug.ts
creations delete [NAME]Deletes a creations from the records AND delete the folder.
USAGE
$ creations delete [NAME]
OPTIONS
-c, --creation=CREATION-ID Use this creation instead of the current. Only has effect on commands relying on the
current creation.
-h, --help show CLI help
-v, --debug
-y, --yes Do not ask for confirmation.
See code: src/commands/delete.ts
creations goto [CREATION]Change the current working directory to CREATION's directory
USAGE
$ creations goto [CREATION]
OPTIONS
-c, --creation=CREATION-ID Use this creation instead of the current. Only has effect on commands relying on the
current creation.
-h, --help show CLI help
-v, --debug
EXAMPLE
$ creations goto schoolsyst
See code: src/commands/goto.ts
creations help [COMMAND]display help for creations
USAGE
$ creations help [COMMAND]
ARGUMENTS
COMMAND command to show help for
OPTIONS
--all see all commands in CLI
See code: @oclif/plugin-help
creations idea [PROJECT] IDEAPut new ideas for the current project or for PROJECT
USAGE
$ creations idea [PROJECT] IDEA
See code: src/commands/idea.ts
creations iteration [VERSION]Set, increment or get the creation's version
USAGE
$ creations iteration [VERSION]
ARGUMENTS
VERSION If version is "major", "minor" or "patch", the current version will be incremented. If not specified, the
current creation's version is returned
OPTIONS
-c, --creation=CREATION-ID Use this creation instead of the current. Only has effect on commands relying on the
current creation.
-h, --help show CLI help
-v, --debug
EXAMPLES
$ creations iteration 1.0.0
$ creations iteration minor
$ creations iteration
v2.0.3
See code: src/commands/iteration.ts
creations listList all of your creations
USAGE
$ creations list
OPTIONS
-a, --show-archived Show archived creations
-c, --creation=CREATION-ID Use this creation instead of the current. Only has effect on commands relying
on the current creation.
-f, --format=table|sentences|paths-only [default: sentences] How to format the list
-h, --help show CLI help
-s, --sort=type|id|directory|archived Sort by category, id, directory or archived status.
-v, --debug
--no-emojis Uses letters for archived status in place of emojis.
--open Opens the records file
--show-templates Show templates
EXAMPLE
$ creations list --format paths-only
/mnt/d/projects/creations
/mnt/d/Coding/projects/mx3creations
$ creations list --format table --show-archived
S │ Name │ Type │ Location
│ creations │ cli/oclif │ /mnt/d/projects/creations
│ portfolio │ nuxt/site │ /mnt/d/Coding/projects/mx3creations
📦 │ aven │ website │ /mnt/d/projects/aven
See code: src/commands/list.ts
creations move [NAME] [NEW-DIRECTORY]Move a project to a different directory.
USAGE
$ creations move [NAME] [NEW-DIRECTORY]
OPTIONS
-c, --creation=CREATION-ID Use this creation instead of the current. Only has effect on commands relying on the
current creation.
-f, --force Overwrite existing target directory.
-h, --help show CLI help
-v, --debug
EXAMPLE
$ creations list -f paths-only
/mnt/d/projects/Coding/portfolio
$ creations move portfolio /mnt/d/projects/
$ creations list -f paths-only
/mnt/d/projects/portfolio
See code: src/commands/move.ts
creations new TYPE NAMECreate a new TYPE named CREATION
USAGE
$ creations new TYPE NAME
OPTIONS
-O, --no-open Don't run creations open after creating the creation
-c, --creation=CREATION-ID Use this creation instead of the current. Only has effect on commands relying on the
current creation.
-h, --help show CLI help
-v, --debug
--archive Archive existing projects in case the project name is already taken
--force Overwrite existing projects in case the project name is already taken
--in=DIRECTORY Generate the template in the specified directory. Uses the type's new.in config as a
default.
EXAMPLES
$ creations new restapi schoolsyst
$ creations new logo mx3
See code: src/commands/new.ts
creations open [NAME]Opens CREATION. The difference with goto is that this will also open the project in the configured software (eg. open the .psd in Photoshop)
USAGE
$ creations open [NAME]
OPTIONS
-c, --creation=CREATION-ID Use this creation instead of the current. Only has effect on commands relying on the
current creation.
-h, --help show CLI help
-v, --debug
--no-goto Don't run `goto CREATION`
See code: src/commands/open.ts
creations publishPublish your creation
USAGE
$ creations publish
OPTIONS
-c, --creation=CREATION-ID Use this creation instead of the current. Only has effect on commands relying on the
current creation.
-h, --help show CLI help
-v, --debug
See code: src/commands/publish.ts
creations regen-recordsRegenerates the record, removing projects that no longer exist on disk.
USAGE
$ creations regen-records
OPTIONS
-h, --help show CLI help
See code: src/commands/regen-records.ts
creations register DIRECTORY TYPE [NAME]Add an existing project directory to
USAGE
$ creations register DIRECTORY TYPE [NAME]
ARGUMENTS
DIRECTORY The directory to register
TYPE What is this project?
NAME Choose the name. Defaults to DIRECTORY's basename.
OPTIONS
-c, --creation=CREATION-ID Use this creation instead of the current. Only has effect on commands relying on the
current creation.
-f, --force Overwrite conflicting creation.
-h, --help show CLI help
-v, --debug
See code: src/commands/register.ts
creations rename [NAME] [NEW-NAME]Rename a creation (and move it to its new directory)
USAGE
$ creations rename [NAME] [NEW-NAME]
OPTIONS
-c, --creation=CREATION-ID Use this creation instead of the current. Only has effect on commands relying on the
current creation.
-h, --help show CLI help
-i, --id-only Do not change the directory, only the ID.
-v, --debug
See code: src/commands/rename.ts
creations scan [DIRECTORY]Scans through an entire directory and interactively add all creations.
USAGE
$ creations scan [DIRECTORY]
OPTIONS
-c, --creation=CREATION-ID Use this creation instead of the current. Only has effect on commands relying on the
current creation.
-h, --help show CLI help
-v, --debug
See code: src/commands/scan.ts
creations unarchive [NAME]Unarchive a project
USAGE
$ creations unarchive [NAME]
OPTIONS
-c, --creation=CREATION-ID Use this creation instead of the current. Only has effect on commands relying on the
current creation.
-h, --help show CLI help
-v, --debug
See code: src/commands/unarchive.ts
creations unregister [NAME]Removes a creation from the record, but does not delete its directory.
USAGE
$ creations unregister [NAME]
OPTIONS
-c, --creation=CREATION-ID Use this creation instead of the current. Only has effect on commands relying on the
current creation.
-h, --help show CLI help
-v, --debug
See code: src/commands/unregister.ts
[0.5.0] - 2020-03-23
unregisterscandelete--format for listlist: Option --paths-only was replaced by --format=paths-onlyregister: NAME defaults to the basename of DIRECTORY, not the entire directoryFix new folder containing the entire generated template generated instead of just its contents (see 979d5bb94f2de5a0eb9e9c5ed680f34b1b2f55cf)
move: Fix moving of creations with slashes in the name (see 979d5bb94f2de5a0eb9e9c5ed680f34b1b2f55cf)
FAQs
A universal creations manager, to scaffold, publish, version, navigate and manage all of your creations, code-related or not!
The npm package creations receives a total of 1 weekly downloads. As such, creations popularity was classified as not popular.
We found that creations demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Product
Reachability analysis for Ruby is now in beta, helping teams identify which vulnerabilities are truly exploitable in their applications.

Research
/Security News
Malicious npm packages use Adspect cloaking and fake CAPTCHAs to fingerprint visitors and redirect victims to crypto-themed scam sites.

Security News
Recent coverage mislabels the latest TEA protocol spam as a worm. Here’s what’s actually happening.