7.10.0
,latest
(7/Dockerfile)7.4.0
(7/Dockerfile)6.10.3
,boron
(6/Dockerfile)6.9.4
(6/Dockerfile)4.8.3
,argon
(4/Dockerfile)4.7.2
(4/Dockerfile)
Node.js is a JavaScript runtime built on Chrome's V8 JavaScript engine. Node.js uses an event-driven, non-blocking I/O model that makes it lightweight and efficient. Node.js' package ecosystem, npm, is the largest ecosystem of open source libraries in the world.
FROM butter/node
CMD [ "npm", "start" ]
or (if you need to a LTS (long term support) version):
FROM butter/node:boron
CMD [ "npm", "start" ]
View license information for Node.js.