Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

connect-modrewrite

Package Overview
Dependencies
Maintainers
1
Versions
62
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

connect-modrewrite

connect-rewrite is a middleware for grunt-contrib-connect. It adds modrewrite functionality to your grunt project

  • 0.1.2
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
16K
decreased by-0.19%
Maintainers
1
Weekly downloads
 
Created
Source

connect-rewrite Build Status

connect-modrewrite is a middleware for grunt-contrib-connect. It adds modrewrite functionality to your grunt project.

Getting started

Install connect-modrewrite with:

npm install connect-modrewrite

Require it in your Gruntfile.js file:

var modRewrite = require('connect-modrewrite');

In grunt.initConfig please add the following code snippet:

connect: {
  server: {
    options: {
      port: 9001,
      base: 'example',
      keepalive: true,
      middleware: function(connect, options) {
        return [
          modRewrite([
            '^/test$ /index.html',
            '^/test/\\d*$ /index.html [L]',
            '^/test/\\d*/\\d*$ /flag.html [L]'
          ]),
          connect.static(options.base)
        ]
      }
    }
  }
}

Configurations

In the example above, modRewrite take as an Array of rewrite rules as an argument. Each rewrite rule is a string with the syntax: MATCHING_PATHS REPLACE_WITH [FLAGS]. MATCHING_PATHS should be defined using a regex string. And that string is passed as an argument to the javascript RegExp Object for matching of paths. REPLACE_WITH is the replacement string for matching paths. Flags is optional and is defined using hard brackets. We currently only support the last flag [L]. Please give suggestions to more flags that makes sense for connect-modrewrite. Keep in mind that grunt-contrib-connect is meant to be a simple static server.

Flags

Last [L]

If a path matches, any subsequent rewrite rules will be disregarded.

Authors

Tingan Ho, tingan87[at]gmail.com

License

Copyright (c) 2012 Tingan Ho Licensed under the MIT license.

Keywords

FAQs

Package last updated on 10 Feb 2013

Did you know?

Socket

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.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc