Socket
Socket
Sign inDemoInstall

@angular/common

Package Overview
Dependencies
4
Maintainers
2
Versions
785
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    @angular/common

Angular - commonly needed directives and services


Version published
Weekly downloads
2.4M
decreased by-14.69%
Maintainers
2
Install size
11.0 MB
Created
Weekly downloads
 

Package description

What is @angular/common?

The @angular/common package is a core Angular library that provides commonly needed services, pipes, and directives that are essential for application development. It is part of the Angular framework and is used for tasks such as HTTP communication, localization, and various utility functions.

What are @angular/common's main functionalities?

HTTP Client

Provides a simplified API for HTTP functionality which allows performing HTTP requests and handling responses within an Angular application.

import { HttpClientModule } from '@angular/common/http';

@NgModule({
  imports: [
    HttpClientModule
  ]
})
export class AppModule { }

Common Directives

Includes directives like ngIf, ngFor, and ngSwitch which are essential for controlling the rendering of the template.

import { CommonModule } from '@angular/common';

@NgModule({
  imports: [
    CommonModule
  ]
})
export class SharedModule { }

Location Services

Provides services for interacting with the browser's URL. Useful for routing and navigation within an Angular application.

import { Location } from '@angular/common';

@Component({
  selector: 'app-component',
  template: '<p>Current path: {{ location.path() }}</p>'
})
export class AppComponent {
  constructor(public location: Location) { }
}

Date, Currency, and Decimal Pipes

Provides built-in pipes for formatting data such as dates, currency, and numbers.

import { DatePipe, CurrencyPipe, DecimalPipe } from '@angular/common';

@Component({
  selector: 'app-component',
  template: '<p>Today is {{ today | date }}</p><p>Amount: {{ amount | currency }}</p>'
})
export class AppComponent {
  today = new Date();
  amount = 1234.56;
}

Other packages similar to @angular/common

Readme

Source

Angular

The sources for this package are in the main Angular repo. Please file issues and pull requests against that repo.

Usage information and reference details can be found in Angular documentation.

License: MIT

FAQs

Last updated on 10 Apr 2024

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.

Install

Related posts

SocketSocket SOC 2 Logo

Product

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

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc