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

nw-global-nav-asset-shim

Package Overview
Dependencies
Maintainers
2
Versions
2
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

nw-global-nav-asset-shim

Shims global-nav asset routes.

  • 1.1.0
  • latest
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
2
increased by100%
Maintainers
2
Weekly downloads
 
Created
Source

nw-global-nav-asset-shim

Serve app-site assets from your node app.

This is meant to simplify development of node apps outside of dev-vagrant only. This module should not be used in production.

installation

npm i --save nw-global-nav-asset-shim

usage

var app = require(express)()

if (process.env.NODE_ENV === 'development') {
  var shim = require('nw-global-nav-asset-shim')
  shim({ appsitePath: '/my/dev/app-site' }, app)
}

Shims the following asset routes:

/css
/js
/global-styles

reasoning

When consuming global-nav (via something like nw-nerdlayoutjs) you get a payload used as the layout for your app. Parts of the layout reference global assets that make up things like the global header and footer styles and js. If you want to run your node app outside of dev-vagrant you'll need to serve these assets yourself so something like localhost:3000/css/bundle.min.css resolves correctly. These assets live in your app-site clone, so this shim just serves from your local clone at the expected routes (see above).

FAQs

Package last updated on 09 Nov 2015

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