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

alien

Package Overview
Dependencies
Maintainers
1
Versions
18
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

alien

Fe development tools

latest
Source
npmnpm
Version
0.2.5
Version published
Maintainers
1
Created
Source

Require

  • rsync (http://rsync.samba.org/)

Installation

$ npm install alien -g

Quick Start

before we run the commands of alien, we should have a project first

create a project

(directory structure)

project
├─┬src
│ ├─┬scripts
│ │ └──...
│ └─┬styles
│   └──...
└─.config

you can checkout (https://github.com/purplecalm/alien.git) to get a test case

start a server

before start server, make sure the working directory contains project

$ alien server

server has three modes, [SRC|DEV|PRD]

  • SRC: source mode, return every file, esay to debug
  • DEV: package mode, return files' package
  • PRD: product mode, return minified code
$ alien server -m DEV

pack

packing exports files

(File .config) e.g

{
	"exports": [
		"scripts/index.js",
		"styles/index.css"
	]
}

before run pack, make sure the project is working directory

$ alien pack

result

project
├─┬dev(package directory)
│ ├─┬scripts
│ │ └──index@dev.js
│ └─┬styles
│   └──index@dev.css
├─┬src
│ ├─┬scripts
│ │ └──...
│ └─┬styles
│   └──...
└─.config

min

minify exports files

(File .config) e.g

{
	"exports": [
		"scripts/index.js",
		"styles/index.css"
	]
}

before run min, make sure the project is working directory

$ alien min

result

project
├─┬prd(product directory)
│ ├─┬scripts
│ │ └──index@bc23723a6ebdd528a774264d37173293.js
│ └─┬styles
│   └──index@db47495f5329bd6a6df53228034d4746.css
├─┬ver(versions directory)
│ ├─┬scripts
│ │ └──index.js.ver (bc23723a6ebdd528a774264d37173293)
│ └─┬styles
│   └──index.css.ver (db47495f5329bd6a6df53228034d4746)
├─┬src
│ ├─┬scripts
│ │ └──...
│ └─┬styles
│   └──...
└─.config

sync

sync all package to target server

make sure you installed rsync (find it here http://rsync.samba.org/)

set dev environment in .config (File .config) e.g

{
	"dev": {
		"host": "127.0.0.1",
		"path": "/home/q/www/project/"
	}
}

before run sync

  • make sure the project is working directory
  • make sure you packed your project before
$ alien sync

we also run pack and sync together

$ alien pack && alien sync

help

Aha!

FAQs

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