
Security News
/Research
Wallet-Draining npm Package Impersonates Nodemailer to Hijack Crypto Transactions
Malicious npm package impersonates Nodemailer and drains wallets by hijacking crypto transactions across multiple blockchains.
laravel-bundler
Advanced tools
Modern and fast asset building tool for Laravel framework with better defaults.
Modern and fast asset building tool for Laravel framework with better defaults.
:bulb: This package does not work with laravel-mix;
you must remove laravel-mix
before using this one
npm install --save-dev laravel-bundler@^3
Create a resources/js/app.js
file like
// Example: Vue.js v2 with bootstrap
import Vue from 'vue';
// You can import styles like this
import 'bootstrap/dist/css/bootstrap.css'
import RegularComponent from './Regular.vue'
const LazyLoadedComponent = () => import('./HeavyComponent.vue');
new Vue({
el: "#app",
components: {
RegularComponent,
LazyLoadedComponent,
}
});
Create a webpack.config.mjs
file on your project root and remove webpack.mix.js
if exists.
import webpack from 'webpack'
import {createConfig} from 'laravel-bundler';
import vue2Recipe from 'laravel-bundler/src/recipes/vue-2.js';
export default createConfig({
entry: {
app: './resources/js/app.js',
},
plugins: [
//
],
// Other webpack configs may go here
},
// Include vue v2 recipe
// Dont forget to install required packages by this recipe
vue2Recipe
);
Update your package.json
file
{
"type": "module",
"scripts": {
"dev": "webpack --config-node-env=development --progress",
"watch": "webpack watch --config-node-env=development --progress",
"hot": "webpack serve --config-node-env=development --progress --hot",
"hot:https": "npm run hot -- --https",
"prod": "webpack --config-node-env=production --progress"
},
"browserslist": [
"> 2%",
"not dead"
],
"babel": {
"presets": [
[
"@babel/preset-env",
{
"bugfixes": true
}
]
],
"plugins": []
}
}
Update your blade template
<!-- header -->
<link href="{{ mix('css/app.css', 'dist') }}" rel="stylesheet">
<!-- footer -->
<script src="{{ mix('js/manifest.js', 'dist') }}"></script>
<script src="{{ mix('js/vendor.js', 'dist') }}"></script>
<script src="{{ mix('js/app.js', 'dist') }}"></script>
Update your .gitignore
file
/public/dist
@babel/preset-env
CSS
and SASS|SCSS
supportautoprefixer
mix-manifest.json
file which is compatible with Laravel's mix()
helper.env
file that are prefixed with MIX_
:wink:These features are not in the plan but can be enabled on demand :man_shrugging:
sass|scss
MIT License
FAQs
Modern and fast asset building tool for Laravel framework with better defaults.
We found that laravel-bundler demonstrated a healthy version release cadence and project activity because the last version was released less than 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
/Research
Malicious npm package impersonates Nodemailer and drains wallets by hijacking crypto transactions across multiple blockchains.
Security News
This episode explores the hard problem of reachability analysis, from static analysis limits to handling dynamic languages and massive dependency trees.
Security News
/Research
Malicious Nx npm versions stole secrets and wallet info using AI CLI tools; Socket’s AI scanner detected the supply chain attack and flagged the malware.