New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

packup

Package Overview
Dependencies
Maintainers
1
Versions
15
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

packup

A no-config dev server for modern web apps

  • 0.7.2
  • latest
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
19
increased by1800%
Maintainers
1
Weekly downloads
 
Created
Source

Packup

Work in progress.

Options

  • --port: Specify a server port (Default: any free port starting from 8080)
  • --config: Use a configuration file

Configuration file

Through the --config option, a configuration file can be supplied. Currently only the entry key is supported to specify multiple entry files. For example:

module.exports = {
  entry: {
    app: './index',
    foo: './foo'
  }
}

Goals

Easy usage

No configuration needed.

  • Provide a hot-reloading enabled development server without the boilerplate
  • Provide a default set of webpack loaders
  • Provide a default set of NPM packages (less is more)
  • Always route all routes to the app, to enable HTML5 pushState routing

Advanced usage

Enable some or complete configuration.

  • Allow extension of default webpack config
  • Allow use of a completely separate webpack config
  • Allow easy replacement through webpack itself

Global install (good for quick no-config experiments)

npm install packup -g
packup main.js

Local install (good for serious projects)

npm install packup --save-dev
node_modules/.bin/packup main.js

See also

  • react-heatpack is the main inspiration but different enough in goals and implementation.

Keywords

FAQs

Package last updated on 28 Dec 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