New Research: Supply Chain Attack on Axios Pulls Malicious Dependency from npm.Details →
Socket
Book a DemoSign in
Socket

npk

Package Overview
Dependencies
Maintainers
1
Versions
4
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

npk

Node.js packaging utility

latest
npmnpm
Version
0.0.4
Version published
Maintainers
1
Created
Source

NPK

Node.js packaging utility to bundle javascript and resource files.

Usage

Install NPK globally via NPM:

npm install npk -g

Using command to pack your project:

npk tests/purejs/

After packaging, NPK will create a new folder out for package. You can find out the package in there:

tests/purejs/out/app.js/

Finally, you can run packaged application directly:

node tests/purejs/out/app.js/app.js

Three levels for packaging

NPK has special and funny options for three levels for packaging your project.

Remove Mock-up (default)

npk [project path]

Mom doesn't recognize

npk [project path] --mom-doesnt-recognize

Dad doesn't recognize

At this level, NPK is packaging your project with C/C++ compiler, to generate a Node.js native module.

npk [project path] --dad-doesnt-recognize

Note that the third level will attempt to compile all things with machine code then saving as a binary file. It means packed application is not going to work on cross-platform. If you need to support several various platform for your project, it must re-package you application on specific platform what you want.

Note for Windows Users

Generating Node.js native module requires C/C++ compiler and Python development. You must install Visual Studio(Express version is fine) and Python 2.7(NOT 3.x) before using "Dad doesn' recognize" option.

How it works

NPK is similar to general compiler for computer language. With linking and managing symbol table, NPK can bundle multiple JavaScript source code files, that's just like that compiler is getting objects for making a single binary file.

Actual mechanism to package JavaScript source code files:

  • Getting source files defined in the 'npk_target' property in package.json.
  • Generating symbol table for storing source code files.
  • Linking and bundling symbol table files to generate a single file.

License

Licensed under the MIT License

Authors

Copyright(c) 2013 Fred Chien <cfsghost@gmail.com>

Keywords

database

FAQs

Package last updated on 31 Dec 2014

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