1.0.0-1.27 • Published 5 years ago

@speedray/cli v1.0.0-1.27

Weekly downloads
5
License
LGPL-3
Repository
github
Last release
5 years ago

Speedray CLI

Build Status Dependency Status devDependency Status npm

Prototype of a CLI for Angular applications deployed to Liferay DXP based on the angular-cli project.

Note

The CLI is now in beta. If you wish to collaborate while the project is still young, check out our issue list.

Before submitting new issues, have a look at issues marked with the type: faq label.

Liferay DXP Support

The server command is replaced with the deploy command. All testing and debugging is performed in a Liferay DXP instance. The webpack compilation is used to create a liferay DXP osgi module. This module is deployed to liferay DXP and is started to make it available for use in the liferay environment.

Prerequisites

Both the CLI and generated project have dependencies that require Node 6.9.0 or higher, together with NPM 3 or higher and Liferay DXP FP 11 or higher.

Table of Contents

Installation

BEFORE YOU INSTALL: please read the prerequisites

npm install -g @speedray/cli

Usage

sr help

Generating and serving an Angular project via a development server

sr new PROJECT_NAME
cd PROJECT_NAME
sr deploy --watch

Navigate to http://localhost:8080/. The app will automatically reload if you change any of the source files.

You can configure the default HTTP host and port used by the development server with two command-line options :

sr deploy --host 127.0.0.1 --port 11311

Generating Components, Directives, Pipes and Services

You can use the sr generate (or just sr g) command to generate Angular components:

sr generate component my-new-component
sr g component my-new-component # using the alias

# components support relative path generation
# if in the directory src/app/feature/ and you run
sr g component new-cmp
# your component will be generated in src/app/feature/new-cmp
# but if you were to run
sr g component ../newer-cmp
# your component will be generated in src/app/newer-cmp

You can find all possible blueprints in the table below:

ScaffoldUsage
Componentng g component my-new-component
Directiveng g directive my-new-directive
Pipeng g pipe my-new-pipe
Serviceng g service my-new-service
Classng g class my-new-class
Guardng g guard my-new-guard
Interfaceng g interface my-new-interface
Enumng g enum my-new-enum
Moduleng g module my-module

Updating Speedray CLI

To update Speedray CLI to a new version, you must update both the global package and your project's local package.

Global package:

npm uninstall -g @speedray/cli
npm cache clean
npm install -g @speedray/cli@latest

Local project package:

rm -rf node_modules dist # use rmdir /S/Q node_modules dist in Windows Command Prompt; use rm -r -fo node_modules,dist in Windows PowerShell
npm install --save-dev @speedray/cli@latest
npm install

You can find more details about changes between versions in CHANGELOG.md.

Development Hints for hacking on Speedray CLI

Working with master

git clone https://github.com/ddavis2xtivia/speedray-cli.git
cd speedray-cli
npm link

npm link is very similar to npm install -g except that instead of downloading the package from the repo, the just cloned speedray-cli/ folder becomes the global package. Any changes to the files in the speedary-cli/ folder will immediately affect the global @speedray/cli package, allowing you to quickly test any changes you make to the cli project.

Now you can use @speedray/cli via the command line:

sr new foo
cd foo
npm link @speedray/cli
sr serve

npm link @speedray/cli is needed because by default the globally installed @speedray/cli just loads the local @speedray/cli from the project which was fetched remotely from npm. npm link @speedray/cli symlinks the global @speedray/cli package to the local @speedray/cli package. Now the speedray-cli you cloned before is in three places: The folder you cloned it into, npm's folder where it stores global packages and the Speedray CLI project you just created.

You can also use sr new foo --link-cli to automatically link the @speedray/cli package.

Please read the official npm-link documentation and the npm-link cheatsheet for more information.

Documentation

The documentation for the Angular CLI is located in this repo's wiki.

License

LGPL-3

1.0.0-1.27

5 years ago

1.0.0-1.26

5 years ago

1.0.0-1.25

5 years ago

1.0.0-1.24

5 years ago

1.0.0-1.23

5 years ago

1.0.0-1.22

5 years ago

1.0.0-1.21

6 years ago

1.0.0-1.20

6 years ago

1.0.0-1.19

6 years ago

1.0.0-1.18

6 years ago

1.0.0-1.17

6 years ago

1.0.0-1.16

6 years ago

1.0.0-1.15

6 years ago

1.0.0-1.14

6 years ago

1.0.0-1.13

6 years ago

1.0.0-11

6 years ago

1.0.0-1.12

6 years ago

1.0.0-10

7 years ago

1.0.0-9

7 years ago

1.0.0-1.11

7 years ago

1.0.0-1.10

7 years ago

1.0.0-1.9

7 years ago

1.0.0-1.8

7 years ago

1.0.0-1.7

7 years ago

1.0.0-1.6

7 years ago

1.0.0-1.5

7 years ago

1.0.0-1.4

7 years ago

1.0.0-1.3

7 years ago

1.0.0-1.2

7 years ago

1.0.0-1.1

7 years ago

1.0.0-beta.1.4

7 years ago

1.0.0-beta.1.3

7 years ago

1.0.0-beta.1.2

7 years ago

1.0.0-beta.1.1

7 years ago