
Security News
Attackers Are Hunting High-Impact Node.js Maintainers in a Coordinated Social Engineering Campaign
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.
tsg-garage
Advanced tools
A collection of various components and services created for use across multiple angular and Ionic applications.
-npm install tsg-garage --save
In order to utilize garage components in your app you must add a loader script into your build process. The script below will copy the components out of the npm package and into a folder called 'garage' in your 'src' folder. This allows the normal Ionic App Scripts to compile the garage module into your app.
Add the following gulp task to copy garage module into src folder
gulp.task('default', function () {
console.log("Running: Copy TSG-Garage from Node_modules to src/garage");
return gulp.src('node_modules/tsg-garage/src/garage/**')
.pipe( gulp.dest('src/garage') );
});
TODO: List a number of useful npm scripts to Add
Include the Garage in any module you want to utilize one of it's features
import { GarageModule } from '../../garage/garage.module';
@NgModule({
declarations: [
],
imports: [
GarageModule
],
exports: [
]
})
export class ImageBoxPageModule {}
FAQs
Mobile and desktop angular components
We found that tsg-garage 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.

Security News
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.

Security News
Axios compromise traced to social engineering, showing how attacks on maintainers can bypass controls and expose the broader software supply chain.

Security News
Node.js has paused its bug bounty program after funding ended, removing payouts for vulnerability reports but keeping its security process unchanged.