Download the PHP package delormejonathan/laravel-js-routing without Composer

On this page you can find all versions of the php package delormejonathan/laravel-js-routing. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.

FAQ

After the download, you have to make one include require_once('vendor/autoload.php');. After that you have to import the classes with use statements.

Example:
If you use only one package a project is not needed. But if you use more then one package, without a project it is not possible to import the classes with use statements.

In general, it is recommended to use always a project to download your libraries. In an application normally there is more than one library needed.
Some PHP packages are not free to download and because of that hosted in private repositories. In this case some credentials are needed to access such packages. Please use the auth.json textarea to insert credentials, if a package is coming from a private repository. You can look here for more information.

  • Some hosting areas are not accessible by a terminal or SSH. Then it is not possible to use Composer.
  • To use Composer is sometimes complicated. Especially for beginners.
  • Composer needs much resources. Sometimes they are not available on a simple webspace.
  • If you are using private repositories you don't need to share your credentials. You can set up everything on our site and then you provide a simple download link to your team member.
  • Simplify your Composer build process. Use our own command line tool to download the vendor folder as binary. This makes your build process faster and you don't need to expose your credentials for private repositories.
Please rate this library. Is it a good library?

Informations about the package laravel-js-routing

Javascript Routing for Laravel 4/5

This package allows you to access Laravel's routing from your Javascript.

The main feature is the possibility to use it easily in local and production environment.

In local environment, the JS routes are re-written each request. In production environment, the JS routes are dumped in a static file for better performance.

If you're using Laravel 4, please read this documentation : Laravel 4 README

Installation

Add this line to your composer.json and run composer update

Add the provider to app.php to the providers section

Add the facade to app.php to the aliases section

Publish assets to public folder

Usage

Call the JSRouter plugin in your application template :

And import routes file dynamically in local and statically in production :

Now, you can use it in JavaScript :

Don't forget to export routes in production. You can add a custom path right after the 'dump' word. Default path is : public/js/routes.js

Configuration

You can change the default path with the configuration file. You have to publish the config file :

Then modify it in app/config/packages.

Common issues

Browser console report "No routes detected"

Make sure you have at least one route with a name or a controller in your routes.php.

I added a route to Laravel and the JSRouter doesn't see it

If you are in production environment, remember to export your routes with php artisan laravel-js-routing:dump when you change your routes.php

If you are in local environment, remember that your route needs to point to a controller. It can have a name (optional). This package doesn't work with Closure routes.

Contribution & improvements

The plugin is pretty basic currently. He needs a better parsing engine to manage optional parameters.

Issues or features

Feel free to open an issue if you encounter a problem or contact me directly.

Credits

License

This project is licensed under the MIT license.


All versions of laravel-js-routing with dependencies

PHP Build Version
Package Version
Requires php Version >=5.4.0
Composer command for our command line client (download client) This client runs in each environment. You don't need a specific PHP version etc. The first 20 API calls are free. Standard composer command

The package delormejonathan/laravel-js-routing contains the following files

Loading the files please wait ....