New Research: Supply Chain Attack on Axios Pulls Malicious Dependency from npm.Details →
Socket
Book a DemoSign in
Socket

@libria/scaffold-angular

Package Overview
Dependencies
Maintainers
1
Versions
5
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install
Package version was removed
This package version has been unpublished, mostly likely due to security reasons

@libria/scaffold-angular

Angular cli wrapper template for @libria/scaffold

unpublished
Source
npmnpm
Version
0.0.2
Version published
Weekly downloads
1
-50%
Maintainers
1
Weekly downloads
 
Created
Source

@libria/scaffold-ts-lib

Typescript library template for @libria/scaffold

Installation

npm install @libria/scaffold-ts-lib

Usage

import { add, subtract, multiply, divide } from '@libria/scaffold-ts-lib';

console.log(add(2, 3));      // 5
console.log(subtract(5, 3)); // 2
console.log(multiply(4, 5)); // 20
console.log(divide(10, 2));  // 5

API

add(a: number, b: number): number

Adds two numbers together.

subtract(a: number, b: number): number

Subtracts the second number from the first.

multiply(a: number, b: number): number

Multiplies two numbers together.

divide(a: number, b: number): number

Divides the first number by the second. Throws an error if the divisor is zero.

Development

# Install dependencies
npm install

# Run tests
npm test

# Build
npm run build

# Lint
npm run lint

License

MIT

Keywords

typescript

FAQs

Package last updated on 08 Feb 2026

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