mirror of
https://github.com/ONLYOFFICE/server.git
synced 2026-04-07 14:04:35 +08:00
git-svn-id: svn://192.168.3.15/activex/AVS/Sources/TeamlabOffice/trunk/nodeJSProjects@50503 954022d7-b5bf-4e40-9824-e11837661b57
23 lines
485 B
Batchfile
23 lines
485 B
Batchfile
ECHO OFF
|
|
|
|
SET RUN_FOLDER=%CD%
|
|
|
|
CD /D %~dp0..\ || exit /b 1
|
|
|
|
ECHO.
|
|
ECHO ----------------------------------------
|
|
ECHO Install node.js modules
|
|
ECHO ----------------------------------------
|
|
|
|
call npm install express || exit /b 1
|
|
call npm install underscore || exit /b 1
|
|
call npm install sockjs || exit /b 1
|
|
call npm install mongodb@1.1.4 || exit /b 1
|
|
|
|
cd /D ..\..\Common || exit /b 1
|
|
call npm install log4js || exit /b 1
|
|
|
|
CD /D %RUN_FOLDER% || exit /b 1
|
|
|
|
exit /b 0
|