Gathering detailed insights and metrics for @rucken/schematics
Gathering detailed insights and metrics for @rucken/schematics
Gathering detailed insights and metrics for @rucken/schematics
Gathering detailed insights and metrics for @rucken/schematics
A schematics collections for generate source files for Angular7+ application based on Rucken template
npm install @rucken/schematics
Typescript
Module System
Min. Node Version
Node Version
NPM Version
TypeScript (71.35%)
HTML (21.44%)
JavaScript (3.91%)
Shell (1.74%)
SCSS (1.56%)
Total Downloads
0
Last Day
0
Last Week
0
Last Month
0
Last Year
0
1 Stars
214 Commits
2 Forks
2 Watchers
3 Branches
2 Contributors
Updated on Nov 21, 2024
Latest Version
4.1.6
Package Id
@rucken/schematics@4.1.6
Unpacked Size
13.87 MB
Size
4.40 MB
File Count
1,170
NPM Version
6.12.0
Node Version
12.13.0
Cumulative downloads
Total Downloads
Last Day
0%
NaN
Compared to previous day
Last Week
0%
NaN
Compared to previous week
Last Month
0%
NaN
Compared to previous month
Last Year
0%
NaN
Compared to previous year
28
39
A schematics collections for generate source files for Angular7+ and NestJS application based on Rucken template
1npm install -g @angular-devkit/schematics-cli 2npm install -g @rucken/schematics
1# create workspace 2schematics @rucken/schematics:workspace custom-workspace --author EndyKaufman --email admin@site15.ru 3# move to created workspace 4cd custom-workspace 5# create frontend application in workspace 6schematics @rucken/schematics:rucken-app custom-app --api=/api --author EndyKaufman --email admin@site15.ru 7# install dependencies 8npm i 9# start dev server for frontend application 10ng serve custom-app
Frontend application generator on Angular7+ with Bootstrap3, based on the Rucken template
Example:
1schematics @rucken/schematics:rucken-app custom-app --api=/api --author EndyKaufman --email admin@site15.ru
Name | Type | Description | Default |
---|---|---|---|
name | {string} | The name of the application. | {"$source":"argv","index":0} |
org | {string} | The name of organization. | none |
api | {string} | The backend api address (/api, http://host.com/api, https://api.host.com). | none |
author | {string} | Author name. | none |
{string} | Author email name. | none |
Name | Used | Current |
---|---|---|
@angular-devkit/build-angular | ||
@angular/cli | ||
@angular/compiler-cli | ||
@compodoc/compodoc | ||
@rucken/cli | ||
domino | ||
ts-node | ||
tslib | ||
typescript | ||
webpack-cli |
See code: src/schematics/rucken-app/index.ts
Mobile frontend generator application on Angular7+ with Ionic4, based on the Rucken template
Example:
1schematics @rucken/schematics:rucken-app-ionic custom-app-ionic --api=/api --author EndyKaufman --email admin@site15.ru
Name | Type | Description | Default |
---|---|---|---|
name | {string} | The name of the application. | {"$source":"argv","index":0} |
org | {string} | The name of organization. | none |
api | {string} | The backend api address (/api, http://host.com/api, https://api.host.com). | none |
author | {string} | Author name. | none |
{string} | Author email name. | none |
Name | Used | Current |
---|---|---|
@angular-devkit/build-angular | ||
@angular-devkit/core | ||
@angular/compiler | ||
@capacitor/cli | ||
@ionic/ng-toolkit | ||
@ionic/schematics-angular | ||
@nrwl/builders | ||
@rucken/cli | ||
ng-packagr | ||
ts-node | ||
tslib | ||
typescript |
See code: src/schematics/rucken-app-ionic/index.ts
REST generator backend applications on NestJS with TypeORM, based on the Rucken template
Example:
1schematics @rucken/schematics:rucken-app-nestjs custom-app-nestjs --author EndyKaufman --email admin@site15.ru
Name | Type | Description | Default |
---|---|---|---|
name | {string} | The name of the application. | {"$source":"argv","index":0} |
org | {string} | The name of organization. | none |
author | {string} | Author name. | none |
{string} | Author email name. | none |
Name | Used | Current |
---|---|---|
@angular-devkit/build-angular | ||
@angular/cli | ||
@angular/compiler | ||
@nestjs/schematics | ||
@nestjs/testing | ||
@nrwl/builders | ||
@nrwl/schematics | ||
@rucken/cli | ||
nodemon | ||
pm2 | ||
webpack | ||
webpack-cli | ||
webpack-node-externals |
See code: src/schematics/rucken-app-nestjs/index.ts
Model generator for frontend application, based on the Rucken template
Example:
1schematics @rucken/schematics:rucken-entity custom-entity --org custom-org --lib custom-lib
Name | Type | Description | Default |
---|---|---|---|
name | {string} | The name of the entity. | {"$source":"argv","index":0} |
lib | {string} | The name of the library. | none |
org | {string} | The name of organization. | none |
See code: src/schematics/rucken-entity/index.ts
The generator of the main components for editing data on the model and for a mobile frontend application on Angular7+ with Ionic4, based on the Rucken template
Example:
1schematics @rucken/schematics:rucken-entity-ionic custom-entity --org custom-org --lib custom-lib-ionic --entitiesLib custom-lib
Name | Type | Description | Default |
---|---|---|---|
name | {string} | The name of the entity. | {"$source":"argv","index":0} |
lib | {string} | The name of the library. | none |
entitiesLib | {string} | The name of the library with entities. | none |
org | {string} | The name of organization. | none |
See code: src/schematics/rucken-entity-ionic/index.ts
Binding components for editing an entity to a mobile frontend application on Angular7+ with Ionic4, based on the Rucken template
Example:
1schematics @rucken/schematics:rucken-entity-ionic-to-app custom-entity --lib custom-lib-ionic --org custom-org --app custom-app-ionic --entitiesLib custom-lib
Name | Type | Description | Default |
---|---|---|---|
name | {string} | The name of the entity. | {"$source":"argv","index":0} |
lib | {string} | The name of the library. | none |
entitiesLib | {string} | The name of the library with entities. | none |
org | {string} | The name of organization. | none |
app | {string} | The name of application. | none |
See code: src/schematics/rucken-entity-ionic-to-app/index.ts
The generator of the entity, the DTO, the service and the controller, for editing the entity data for the backend of the application on NestJS with TypeORM, based on the Rucken template
Example:
1schematics @rucken/schematics:rucken-entity-nestjs custom-entity --org custom-org --lib custom-lib-nestjs --timestamp 1553957529598
Name | Type | Description | Default |
---|---|---|---|
name | {string} | The name of the entity. | {"$source":"argv","index":0} |
lib | {string} | The name of the library. | none |
org | {string} | The name of organization. | none |
timestamp | {number} | Timestamp used in migrations. | none |
See code: src/schematics/rucken-entity-nestjs/index.ts
The generator of the main components for editing data on the model and for the frontend application on Angular7+ with Bootstrap3, based on the Rucken template
Example:
1schematics @rucken/schematics:rucken-entity-web custom-entity --org custom-org --lib custom-lib-web --entitiesLib custom-lib
Name | Type | Description | Default |
---|---|---|---|
name | {string} | The name of the entity. | {"$source":"argv","index":0} |
lib | {string} | The name of the library. | none |
entitiesLib | {string} | The name of the library with entities. | none |
org | {string} | The name of organization. | none |
See code: src/schematics/rucken-entity-web/index.ts
Binding of components for editing an entity to a frontend application on Angular7+ with Bootstrap3, based on the Rucken template
Example:
1schematics @rucken/schematics:rucken-entity-web-to-app custom-entity --lib custom-lib-web --org custom-org --app custom-app --entitiesLib custom-lib
Name | Type | Description | Default |
---|---|---|---|
name | {string} | The name of the entity. | {"$source":"argv","index":0} |
lib | {string} | The name of the library. | none |
entitiesLib | {string} | The name of the library with entities. | none |
org | {string} | The name of organization. | none |
app | {string} | The name of application. | none |
See code: src/schematics/rucken-entity-web-to-app/index.ts
Frontend library generator, based on the Rucken template
Example:
1schematics @rucken/schematics:rucken-lib custom-lib-web --org custom-org --author EndyKaufman --email admin@site15.ru
Name | Type | Description | Default |
---|---|---|---|
name | {string} | The name of the library. | {"$source":"argv","index":0} |
org | {string} | The name of organization. | none |
author | {string} | Author name. | none |
{string} | Author email name. | none |
See code: src/schematics/rucken-lib/index.ts
Backend library generator on NestJS, based on the Rucken template
Example:
1schematics @rucken/schematics:rucken-lib-nestjs custom-lib-nestjs --org custom-org --author EndyKaufman --email admin@site15.ru
Name | Type | Description | Default |
---|---|---|---|
name | {string} | The name of the library. | {"$source":"argv","index":0} |
org | {string} | The name of organization. | none |
author | {string} | Author name. | none |
{string} | Author email name. | none |
See code: src/schematics/rucken-lib-nestjs/index.ts
Linking the library to the backend application on NestJS, based on the Rucken template
Example:
1schematics @rucken/schematics:rucken-lib-nestjs-to-app custom-lib-nestjs --org custom-org --app custom-app-nestjs
Name | Type | Description | Default |
---|---|---|---|
name | {string} | The name of the library. | {"$source":"argv","index":0} |
org | {string} | The name of organization. | none |
app | {string} | The name of application. | none |
See code: src/schematics/rucken-lib-nestjs-to-app/index.ts
Linking the library to the frontend application on Angular7+, based on the Rucken template
Examples:
1schematics @rucken/schematics:rucken-lib-to-app custom-lib --org custom-org --app custom-app 2schematics @rucken/schematics:rucken-lib-to-app custom-lib-web --org custom-org --app custom-app 3schematics @rucken/schematics:rucken-lib-to-app custom-lib --org custom-org --app custom-app-ionic 4schematics @rucken/schematics:rucken-lib-to-app custom-lib-ionic --org custom-org --app custom-app-ionic
Name | Type | Description | Default |
---|---|---|---|
name | {string} | The name of the library. | {"$source":"argv","index":0} |
org | {string} | The name of organization. | none |
app | {string} | The name of application. | none |
See code: src/schematics/rucken-lib-to-app/index.ts
Workspace generator, based on the Rucken template
Example:
1schematics @rucken/schematics:workspace custom-workspace --author EndyKaufman --email admin@site15.ru
Name | Type | Description | Default |
---|---|---|---|
name | {string} | The name of the workspace. | {"$source":"argv","index":0} |
author | {string} | Author name. | none |
{string} | Author email name. | none |
See code: src/schematics/workspace/index.ts
MIT
No vulnerabilities found.
Reason
no binaries found in the repo
Reason
project is archived
Details
Reason
Found 0/30 approved changesets -- score normalized to 0
Reason
no effort to earn an OpenSSF best practices badge detected
Reason
no SAST tool detected
Details
Reason
security policy file not detected
Details
Reason
license file not detected
Details
Reason
dependency not pinned by hash detected -- score normalized to 0
Details
Reason
project is not fuzzed
Details
Reason
branch protection not enabled on development/release branches
Details
Reason
238 existing vulnerabilities detected
Details
Score
Last Scanned on 2025-07-07
The Open Source Security Foundation is a cross-industry collaboration to improve the security of open source software (OSS). The Scorecard provides security health metrics for open source projects.
Learn More