New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

@4geit/ngx-checkout-component

Package Overview
Dependencies
Maintainers
1
Versions
7
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@4geit/ngx-checkout-component

checkout section for marketplace layout

  • 1.2.1
  • latest
  • npm
  • Socket score

Version published
Weekly downloads
0
decreased by-100%
Maintainers
1
Weekly downloads
 
Created
Source

@4geit/ngx-checkout-component npm version


checkout section for marketplace layout

Installation

  1. A recommended way to install @4geit/ngx-checkout-component is through npm package manager using the following command:
npm i @4geit/ngx-checkout-component --save

Or use yarn using the following command:

yarn add @4geit/ngx-checkout-component
  1. You need to import the NgxCheckoutComponent component within the module you want it to be. For instance app.module.ts as follows:
import { NgxCheckoutComponent } from '@4geit/ngx-checkout-component';

And you also need to add the NgxCheckoutComponent component with the @NgModule decorator as part of the declarations list.

@NgModule({
  // ...
  declarations: [
    // ...
    NgxCheckoutComponent,
    // ...
  ],
  // ...
})
export class AppModule { }
  1. You can also attach the component to a route in your routing setup. To do so, you need to import the NgxCheckoutComponent component in the routing file you want to use it. For instance app-routing.module.ts as follows:
import { NgxCheckoutComponent } from '@4geit/ngx-checkout-component';

And you also need to add the NgxCheckoutComponent component within the list of routes as follows:

const routes: Routes = [
  // ...
  { path: '**', component: NgxCheckoutComponent }
  // ...
];

FAQs

Package last updated on 04 Jul 2017

Did you know?

Socket

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.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc