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

@starnetbih/au2-webpack-plugin-test

Package Overview
Dependencies
Maintainers
3
Versions
2
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@starnetbih/au2-webpack-plugin-test

An Aurelia 2 plugin.

  • 0.0.2
  • latest
  • npm
  • Socket score

Version published
Weekly downloads
1
Maintainers
3
Weekly downloads
 
Created
Source

webpack-plugin

This project is bootstrapped by aurelia/new.

Start dev web server

npm start

Note this plugin project comes with a dev-app. The above command starts the dev app in dev-app/ folder. The plugin source code is in src/ folder.

Build the plugin in production modern

npm run build

It builds plugin into dist/index.js file.

Note when you do npm publish or npm pack to prepare the plugin package, it automatically run the above build command by the prepare script defined in your package.json "scripts" section.

Consume the plugin

If your plugin is published to npm or a private registry, just install the plugin package.json

npm install webpack-plugin

If you want to directly use plugin's git repo.

npm install git@github.com:username/webpack-plugin.git

or

npm install https://some.git.server/username/webpack-plugin.git

If you want to install from local folder, don't do "npm install ../local/webpack-plugin/" as the folder's node_modules/ will cause webpack to complain about duplicated dependency like "@aurelia/metadata".

In this plugin's folder, do

npm pack

This will pack the plugin into webpack-plugin In an application project's main file.

import * as myPlugin from 'webpack-plugin';
Aurelia
  // Load all exports from the plugin
  .register(myPlugin)
  .app(MyApp)
  .start();

Analyze webpack bundle

npm run analyze

FAQs

Package last updated on 25 Apr 2024

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