summaryrefslogtreecommitdiffstats
path: root/rules/nodejs.in
blob: 233b1c832c22bf679b306625ab04841de41652f8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
## SECTION=bytecode_engines

menuconfig NODEJS
	tristate
	prompt "nodejs                        "
	select HOST_NODEJS
	select OPENSSL
	select ZLIB
	help
	  evented I/O for V8 javascript

	  Node.js is a platform built on Chrome's JavaScript runtime
	  for easily building fast, scalable network
	  applications. Node.js uses an event-driven, non-blocking I/O
	  model that makes it lightweight and efficient, perfect for
	  data-intensive real-time applications that run across
	  distributed devices.


if NODEJS

config NODEJS_NPM
	tristate
	prompt "install npm on target"

config NODEJS_MODULE_LIST
	string
	prompt "install nodejs packages"
	default "express@4.13.0"
endif