
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.
@savantly/sprout-web-ui
Advanced tools
[](https://david-dm.org/preboot/angular-webpack#info=dependencies) [](https://david-dm.org/pre
A complete, yet simple, starter for Angular v2+ using Webpack.
This seed repo serves as an Angular starter for anyone looking to get up and running with Angular and TypeScript fast. Using Webpack for building our files and assisting with boilerplate. We're also using Protractor for our end-to-end story and Karma for our unit tests.
Warning: Make sure you're using the latest version of Node.js and NPM
# clone our repo
$ git clone https://github.com/preboot/angular-webpack.git my-app
# change directory to your app
$ cd my-app
# install the dependencies with npm
$ npm install
# start the server
$ npm start
go to http://localhost:8080 in your browser.
What you need to run this app:
node and npm (Use NVM)v6.x.x+) and NPM (3.x.x+)fork this repoclone your forknpm install to install all dependenciesAfter you have installed all dependencies you can now start developing with:
npm startIt will start a local server using webpack-dev-server which will watch, build (in-memory), and reload for you. The application can be checked at http://localhost:8080.
As an alternative, you can work using Hot Module Replacement (HMR):
npm run start:hmrAnd you are all set! You can now modify your components on the fly without having to reload the entire page.
npm testnpm run test-watchnpm startnpm run webdriver-startnpm run e2enpm run e2e-liveTo build your application, run:
npm run buildYou can now go to /dist and deploy that to your server!
You can generate api docs (using TypeDoc) for your code with the following:
npm run docsNo, Webpack will add all the needed Javascript bundles as script tags and all the CSS files as link tags. The advantage is that you don't need to modify the index.html every time you build your solution to update the hashes.
It's simple, just install the lib via npm and import it in your code when you need it. Don't forget that you need to configure some external libs in the bootstrap of your application.
Just install the lib and import the css files in vendor.ts. For example this is how to do it with bootstrap:
npm install bootstrap@next --save
And in vendor.ts add the following:
import 'bootstrap/dist/css/bootstrap.css';
To take full advantage of TypeScript with autocomplete you would have to use an editor with the correct TypeScript plugins.
We have good experience using these editors:
FAQs
[](https://david-dm.org/preboot/angular-webpack#info=dependencies) [](https://david-dm.org/pre
We found that @savantly/sprout-web-ui 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.