laravel-mix VS Laravel Mix

Compare laravel-mix vs Laravel Mix and see what are their differences.

laravel-mix

The power of webpack, distilled for the rest of us. [Moved to: https://github.com/laravel-mix/laravel-mix] (by JeffreyWay)

Laravel Mix

The power of webpack, distilled for the rest of us. (by laravel-mix)
SurveyJS - Open-Source JSON Form Builder to Create Dynamic Forms Right in Your App
With SurveyJS form UI libraries, you can build and style forms in a fully-integrated drag & drop form builder, render them in your JS app, and store form submission data in any backend, inc. PHP, ASP.NET Core, and Node.js.
surveyjs.io
featured
InfluxDB - Power Real-Time Data Analytics at Scale
Get real-time insights from all types of time series data with InfluxDB. Ingest, query, and analyze billions of data points in real-time with unbounded cardinality.
www.influxdata.com
featured
laravel-mix Laravel Mix
1 13
4,906 5,238
- 0.1%
8.7 1.2
over 2 years ago 4 months ago
JavaScript JavaScript
MIT License MIT License
The number of mentions indicates the total number of mentions that we've tracked plus the number of user suggested alternatives.
Stars - the number of stars that a project has on GitHub. Growth - month over month growth in stars.
Activity is a relative number indicating how actively a project is being developed. Recent commits have higher weight than older ones.
For example, an activity of 9.0 indicates that a project is amongst the top 10% of the most actively developed projects that we are tracking.

laravel-mix

Posts with mentions or reviews of laravel-mix. We have used some of these posts to build our list of alternatives and similar projects.
  • Need help using Laravel Mix 6
    1 project | /r/laravel | 9 Dec 2021
    const path = require('path') const fs = require('fs-extra') const mix = require('laravel-mix') require('laravel-mix-versionhash') const tailwindcss = require('tailwindcss') // const { BundleAnalyzerPlugin } = require('webpack-bundle-analyzer') mix .js('resources/js/app.js', 'public/dist/js').vue() .sass('resources/sass/app.scss', 'public/dist/css') .options({ processCssUrls: false, postCss: [tailwindcss('./tailwind.config.js')] }) .disableNotifications() if (mix.inProduction()) { mix // .extract() // Disabled until resolved: https://github.com/JeffreyWay/laravel-mix/issues/1889 // .version() // Use `laravel-mix-versionhash` for the generating correct Laravel Mix manifest file. .versionHash() } else { mix.sourceMaps() } mix.webpackConfig({ plugins: [ // new BundleAnalyzerPlugin() ], resolve: { extensions: ['.js', '.json', '.vue'], alias: { '~': path.join(__dirname, './resources/js') } }, output: { chunkFilename: 'dist/js/[chunkhash].js', path: path.resolve(__dirname, mix.inProduction() ? './public/build' : './public') } }) mix.then(() => { if (mix.inProduction()) { process.nextTick(() => publishAseets()) } }) function publishAseets () { const publicDir = path.resolve(__dirname, './public') fs.removeSync(path.join(publicDir, 'dist')) fs.copySync(path.join(publicDir, 'build', 'dist'), path.join(publicDir, 'dist')) fs.removeSync(path.join(publicDir, 'build')) }

Laravel Mix

Posts with mentions or reviews of Laravel Mix. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2022-01-31.

What are some alternatives?

When comparing laravel-mix and Laravel Mix you can also consider the following projects:

laraberg - A Gutenberg implementation for Laravel

vite - Next generation frontend tooling. It's fast!

react-loadable - :hourglass_flowing_sand: A higher order component for loading components with promises.

Symfony Encore - A simple but powerful API for processing & compiling assets built around Webpack

webpack - A bundler for javascript and friends. Packs many modules into a few bundled assets. Code Splitting allows for loading parts of the application on demand. Through "loaders", modules can be CommonJs, AMD, ES6 modules, CSS, Images, JSON, Coffeescript, LESS, ... and your custom stuff.

Symfony Asset - Manages URL generation and versioning of web assets such as CSS stylesheets, JavaScript files and image files

graphql-laravel-example - A comprehensive example project to show how to use graphql + laravel in the real world!

jetstream - Tailwind scaffolding for the Laravel framework.

PHP Debug Bar - Debug bar for PHP

WordPress Packagist - WordPress Packagist — manage your plugins with Composer

multi-tenant - Run multiple websites using the same Laravel installation while keeping tenant specific data separated for fully independent multi-domain setups, previously github.com/hyn/multi-tenant