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

grunt-openfin

Package Overview
Dependencies
Maintainers
1
Versions
8
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

grunt-openfin

Grunt plugin for OpenFin applications

  • 1.0.3
  • latest
  • Source
  • npm
  • Socket score

Version published
Maintainers
1
Created
Source

grunt-openfin

Build Status

You will be able to configure and install specific versions of the OpenFin Runtime and change application configuration details.

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-openfin --save-dev

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

grunt.loadNpmTasks('grunt-openfin');

The "openfin" task

Overview

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

grunt.initConfig({
  openfin: {
    options: {
      // Task-specific options go here.
    },
  },
});

Usage Examples

Basic Usage

In this example we will have two options, one will start the OpenFin Runtime for a application config hosted in http://localhost:3000/app.json, the other will not take any action.

grunt.initConfig({
    openfin: {
        options: {
            configPath: 'http://localhost:3000/app.json'
        },
        serve: {
            open: true
        },
        build: {
            open: false
        }
    }
});

grunt.registerTask('serve', ['openfin:serve']);
grunt.registerTask('build', ['openfin:build']);

Usage with Application Config

In this example we will have the plugin create and update a config file and launch the OpenFin runtime.

grunt.initConfig({
    openfin: {
        options: {
            configPath: 'http://localhost:3000/app.json'
            config: {
                create: true,
                filePath: 'public/app.json',
                options: {
                    startup_app: {
                        name: 'MyAppName',
                        url: 'http://localhost:3000/index.html',
                        applicationIcon: 'http://localhost:3000/img/icon.ico'
                    },
                    shortcut: {
                        icon: 'http://localhost:3000/img/icon.ico'
                    }

                }
            }
        },
        serve: {
            open: true,
        },
        build: {
            open: false,
            config: {
                create: false
            }
        }
    }
});
grunt.registerTask('serve', ['openfin:serve']);
grunt.registerTask('build', ['openfin:build']);

Options

options.open

Type: Bool

Default value: true

Determines if the OpenFin runtime will be launched on start.

options.configPath

Type: String

Default value: ''

Examples:

'http://localhost:3000/app.json'
'file:/C:/helloWorld/app.json'

The location of the config file hosted or the file path.

options.config

Type: Object

Default value: {}

This object will be used to construct/update OpenFin application configs.

options.config.create

Type: Bool

Default value: false

Determines if the application config file will be created if not present.

options.config.filePath

Type: String

Default value: ''

File path location to the application config file.

options.config.options

Type: object

Default value: {}

OpenFin Application Configuration object as described in the OpenFin config file API docs.

License

MIT

Keywords

FAQs

Package last updated on 23 Dec 2016

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