laraberg VS laravel-mix

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

laraberg

A Gutenberg implementation for Laravel (by VanOns)

laravel-mix

The power of webpack, distilled for the rest of us. [Moved to: https://github.com/laravel-mix/laravel-mix] (by JeffreyWay)
Our great sponsors
  • WorkOS - The modern identity platform for B2B SaaS
  • InfluxDB - Power Real-Time Data Analytics at Scale
  • SaaSHub - Software Alternatives and Reviews
laraberg laravel-mix
5 1
1,281 4,906
0.5% -
2.2 8.7
about 1 month ago over 2 years ago
PHP JavaScript
GNU General Public License v3.0 only 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.

laraberg

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

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')) }

What are some alternatives?

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

create-guten-block - 📦 A zero-configuration #0CJS developer toolkit for building WordPress Gutenberg block plugins.

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

filament - A collection of beautiful full-stack components for Laravel. The perfect starting point for your next app. Using Livewire, Alpine.js and Tailwind CSS.

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.

ziggy - Use your Laravel named routes in JavaScript [Moved to: https://github.com/tighten/ziggy]

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

Laravel Mix - The power of webpack, distilled for the rest of us.

Editor-Block-Outline - WordPress Gutenberg editor block outline plugin

webhook.site - ⚓️ Easily test HTTP webhooks with this handy tool that displays requests instantly.

twill - Twill is an open source CMS toolkit for Laravel that helps developers rapidly create a custom admin console that is intuitive, powerful and flexible. Chat with us on Discord at https://discord.gg/cnWk7EFv8R.