npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

grunt-http-convert-https

v0.2.0

Published

convert http to https

Downloads

1

Readme

grunt-http-convert-https

convert http to https

Getting Started

This plugin requires Grunt ~0.4.5

If you haven't used Grunt before, be sure to check out the Getting Started guide, as it explains how to create a Gruntfile as well as install and use Grunt plugins. Once you're familiar with that process, you may install this plugin with this command:

npm install grunt-http-convert-https --save-dev

Once the plugin has been installed, it may be enabled inside your Gruntfile with this line of JavaScript:

grunt.loadNpmTasks('http-convert-https');

The "http-convert-https" task

Overview

In your project's Gruntfile, add a section named http-convert-https to the data object passed into grunt.initConfig().

grunt.initConfig({
  converthttps: {
    options: {
        separator: ',',
        punctuation:''
      },
    config:{
      expand: true,
      src: ['test/before.js'],
      httpsJson:{
        "prtldomain":
        [
          {
            "http":"news.sina.cn",
            "https":"snews.sina.cn"
          }
        ]
      },
      httpsJsonBool:false,
      httpsSupportBool:false,
      dest:'build'
    } 
  },
});

Options

Purpose

the 'http-convert-https' is find 'http://xxx' url from the js file by you input,and put the 'http://' change to 'window.prtl.prefix',if the webprotocol is http,the 'window.prtl.prefix' is http,if the webprotocol is https,the 'window.prtl.prefix' is https.

####initConfig

#####httpsJson: In the grunt.initConfig,the httpsJson is the domain you want to change from http to https.for example:when the webprotocol is http,and the domain is news.sina.cn,in the js file,the Regrex match the http and domain,will change it to '+window.prtl.prefix+''+(window.prtl.type=='http'?'news.sina.cn':'snews.sina.cn')+',if you only want change 'http://' you can didn't write the config.

#####httpsJsonBool: If the bool is false,the httpsJson can't write in your js file,on the contrary,the json will write in the js file.

#####httpsSupportBool In the httpsJson,we refer to 'window.prtl.type' ,we should define it in the js.The httpsSupport is a section js which define the 'window.prtl.type'.if the httpsSupportBool is true,this section js will write in your js,we suggest that you put it in true.

#####window.prtl.cUrlSelf(url,httpsJson) If the url come from AJAX,and we can't find it by Regrex,we provide the cUrlSelf(url,httpsJson),the first arguement is the prorocol and domain you want to change, the section argument format is

[ {
       "http":"mjs.sinaimg.cn",
       "https":"mjss.sinaimg.cn"
}]

you can add Object in the Array.if you only change the protocol,you can not pass the second argument.

#####window.prtl.cUrlAuto(url) This method is also change the url form Ajax or other ways,this method will pass parameters from the grunt.initConfig httpsJson,so you must put the httpsJsonBool is true.if you only change the protocol you can didn't write initConfig.

Usage Examples

grunt.initConfig({
  converthttps: {
      options: {
        separator: ',',
        punctuation:''
      },
      config:{
        expand: true,
        src: ['test/before.js'],
        httpsJson:{
          "prtldomain":
          [
            {
              "http":"news.sina.cn",
              "https":"snews.sina.cn"
            }
          ]
        },
        httpsJsonBool:false,
        httpsSupportBool:false,
        dest:'build'
      }      
    }
});

Contributing

In lieu of a formal styleguide, take care to maintain the existing coding style. Add unit tests for any new or changed functionality. Lint and test your code using Grunt.

Release History

change readme 0.2.0