
Research
Malicious npm Packages Impersonate Flashbots SDKs, Targeting Ethereum Wallet Credentials
Four npm packages disguised as cryptographic tools steal developer credentials and send them to attacker-controlled Telegram infrastructure.
my-temp-angular-schematics
Advanced tools
├── <PROJECT_ROOT>
└── /src
└── /app - App Module
├── app.component.ts
├── app.html
├── app.module.ts
├── app.scss
├── main.ts
└── /core - Core Feature Module (e.g., Singleton Services/Providers)
├── core.module.ts
├── module-import-guard.ts
└── /logger
├── console-logger.service.ts
├── logger.service.ts
└── /pages - Page (Component) Modules
└── /home
├── home.page.html
├── home.page.module.ts
├── home.page.scss
├── home.page.spec.ts
├── home.page.ts
└── /shared - Shared Feature Module (shared Components, Directives and Pipes)
├── shared.module.ts
└── /assets
└── /environments - Environment specific configuration
├── environment.dev.ts
├── environment.ts
└── /theme
├── facebook-messenger-theme.scss
├── gradient-mixins.scss
├── gradient.scss
├── green-and-blue-theme.scss
├── variables.scss
├── index.html
├── manifest.json
├── service-worker.js
└── /config - Webpack Configuration
├── webpack.config.json
└── /e2e - E2E Test Configuration
├── app.e2e-spec.ts
├── app.po.ts
├── tsconfig.e2e.json
└── /resources - Default Resources (e.g., Icon and Splash)
└── /www - Ionic's 'dist' directory
└── /assets
└── /build
├── index.html
├── manifest.json
├── service-worker.js
├── .editorconfig
├── .gitignore
├── config.xml
├── ionic.config.json
├── karma.conf.json
├── package.json
├── protractor.conf.json
├── README.md
├── tsconfig.json
├── tsconfig.ng-cli.json
├── tslint.json
Note: See this post re Shared Feature Module (Shared Common Modules) v Encapsulated Modules.
Install Schematics globally using npm:
npm install -g @angular-devkit/core
npm install -g @angular-devkit/schematics
npm install -g @schematics/schematics
npm install -g rxjs
Install the Angular CLI globally using npm:
npm install -g @angular/cli
To install @ionic-angular/schematics globally using npm:
npm install -g @ionic-angular/schematics
To set @ionic-angular/schematics as the default collection:
ng set defaults.schematics.collection @ionic-angular/schematics --global
To reset the default collection:
ng set defaults.schematics.collection @schematics/angular --global
Note: There is currently an issue with Schematics use of require.resolve()
however there is a known workaround:
cd /usr/local/lib/node_modules/@angular/cli/node_modules
mkdir @ionic-angular
cp -R /usr/local/lib/node_modules/@ionic-angular/* @ionic-angular/
To add @ionic-angular/schematics to a project using npm:
npm install @ionic-angular/schematics@latest --save-dev
You also need to add the Angular CLI to your project's devDependencies
:
npm install @angular/cli@latest --save-dev
The set @ionic-angular/schematics as the default collection update your project's .angular-cli.json
:
"defaults": {
"schematics": {
"collection": "@ionic-angular/schematics"
}
}
You can use the ng new
command to generate a new Ionic project:
ng new --collection=@ionic-angular/schematics my-app
cd my-app
ionic serve
If you have set @ionic-angular/schematics
as the default collection:
ng new my-app
cd my-app
ionic serve
You can also use the Schematics CLI to generate a new Ionic project:
schematics @ionic-angular/schematics:application --directory my-app --name MyApp
cd my-app
npm install
ionic serve
You can use the ng generate
(or just ng g
) command to generate Ionic pages:
ng generate page --collection=@ionic-angular/schematics pages/my-page --skip-import
ng g page --collection=@ionic-angular/schematics pages/my-page --skip-import # using the alias
ng g page pages/my-page --skip-import # if @ionic-angular/schematics is the default collection
Note: Pages are lazy loaded by default.
You can also use the Schematics CLI to generate Ionic pages:
schematics @ionic-angular/schematics:page --name my-page
Sample page:
You can find all possible blueprints in the table below:
Scaffold | Usage |
---|---|
Component | ng g component my-new-component --spec |
Directive | ng g directive my-new-directive --spec |
Enum | ng g enum my-new-enum |
Interface | ng g interface my-new-interface |
Module | ng g module my-new-module --spec |
Page | ng g page pages/my-new-page --skip-import |
Pipe | ng g pipe my-new-pipe --spec |
Service | ng g service my-new-service --spec |
FAQs
Schematics for Ionic Angular
The npm package my-temp-angular-schematics receives a total of 4 weekly downloads. As such, my-temp-angular-schematics popularity was classified as not popular.
We found that my-temp-angular-schematics 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.
Research
Four npm packages disguised as cryptographic tools steal developer credentials and send them to attacker-controlled Telegram infrastructure.
Security News
Ruby maintainers from Bundler and rbenv teams are building rv to bring Python uv's speed and unified tooling approach to Ruby development.
Security News
Following last week’s supply chain attack, Nx published findings on the GitHub Actions exploit and moved npm publishing to Trusted Publishers.