Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
A
amos-station-module-view
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
station
amos-station-module-view
Commits
f3029f99
Commit
f3029f99
authored
Jun 18, 2020
by
张博
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
bug
parent
44554099
Hide whitespace changes
Inline
Side-by-side
Showing
8 changed files
with
1277 additions
and
33 deletions
+1277
-33
MaskContent.js
mods/components/3dviewConvertor/view/MaskContent.js
+23
-12
View3D.js
mods/components/3dviewConvertor/view/View3D.js
+44
-14
index.js
mods/components/3dviewConvertor/view/actionbar/index.js
+10
-5
conf.js
mods/components/3dviewConvertor/view/conf.js
+6
-1
SafetyExecuteList.js
...Convertor/view/panoramic/statistical/SafetyExecuteList.js
+1
-1
index.js
mods/components/3dviewConvertor/view/sideControl/index.js
+19
-0
report.20200618.143229.4036.0.001.json
report.20200618.143229.4036.0.001.json
+587
-0
report.20200618.185839.18116.0.001.json
report.20200618.185839.18116.0.001.json
+587
-0
No files found.
mods/components/3dviewConvertor/view/MaskContent.js
View file @
f3029f99
...
...
@@ -21,6 +21,7 @@ class MaskContent extends Component {
this
.
state
=
{
planStarted
:
false
,
activeAction
:
'panoramic'
,
multiple
:
true
,
searchPaneVisible
:
false
};
}
...
...
@@ -49,14 +50,18 @@ class MaskContent extends Component {
};
actionBarClick
=
({
singleClick
,
type
,
label
,
showLabel
})
=>
{
if
(
type
===
'back'
){
this
.
props
.
initModalback
();
return
;
}
if
(
!
singleClick
){
//设置选中状态
this
.
setState
({
activeAction
:
type
});
this
.
setState
({
activeAction
:
type
,
multiple
:
false
});
}
this
.
props
.
onActionItemClick
&&
this
.
props
.
onActionItemClick
(
type
,
label
,
showLabel
);
if
(
type
===
'search'
){
this
.
changeSearchPaneVisible
();
}
}
changeSearchPaneVisible
=
()
=>
{
...
...
@@ -71,13 +76,12 @@ class MaskContent extends Component {
initViewModel
=
()
=>
{
//选中全景监控、隐藏检索查询框
this
.
setState
({
activeAction
:
'panoramic'
,
searchPaneVisible
:
false
});
this
.
setState
({
activeAction
:
'panoramic'
,
multiple
:
true
,
searchPaneVisible
:
false
});
}
render
()
{
const
{
planStarted
,
activeAction
,
searchPaneVisible
}
=
this
.
state
;
const
{
planStarted
,
activeAction
,
searchPaneVisible
,
multiple
}
=
this
.
state
;
const
{
multiple
,
onItemClick
,
layerConfig
,
alarmStarted
,
...
...
@@ -90,7 +94,9 @@ class MaskContent extends Component {
errorAreaId
,
focusPosition
,
isPermissionControl
,
bizPerActionBars
bizPerActionBars
,
isInitModel
,
isPanoramic
}
=
this
.
props
;
alarmStarted
&&
this
.
props
.
editModelChange
(
true
);
const
wsURL
=
completeToken
(
SysWsURL
.
rulews
);
...
...
@@ -115,12 +121,15 @@ class MaskContent extends Component {
return
(
<
div
className
=
"mask-content"
>
<
AmosWebSocket
ref
=
{
node
=>
this
.
aws
=
node
}
url
=
{
wsURL
}
onMessage
=
{
this
.
handleData
}
reconnect
debug
/>
{
!
alarmStarted
&&
sideControlShow
&&
<
SideControl
multiple
=
{
multiple
}
errorAreaId
=
{
errorAreaId
}
onItemClick
=
{
onItemClick
}
layerConfig
=
{
layerConfig
}
animationProps
=
{
controlAnima
tion
}
/>
}
{
!
alarmStarted
&&
sideControlShow
&&
<
SideControl
multiple
=
{
multiple
}
errorAreaId
=
{
errorAreaId
}
onItemClick
=
{
onItemClick
}
layerConfig
=
{
layerConfig
}
animationProps
=
{
controlAnimation
}
activeAction
=
{
activeAc
tion
}
/>
}
{
!
alarmStarted
&&
isShowActionBar
&&
<
SearchPane
visible
=
{
searchPaneVisible
}
focusPosition
=
{
focusPosition
}
changeSearchPaneVisible
=
{
this
.
changeSearchPaneVisible
}
/>
}
<
TopMsg
alarmStart
=
{
alarmStart
}
/
>
{
!
alarmStarted
&&
!
isShowActionBar
&&
<
ModelHeader
animationProps
=
{
controlAnimation
}
headerName
=
{
headerName
}
handleExceptModel
=
{
this
.
handleExceptModel
}
/>
}
{
!
alarmStarted
&&
(
!
isShowActionBar
||
isInitModel
)
&&
!
isPanoramic
&&
<
ModelHeader
animationProps
=
{
controlAnimation
}
headerName
=
{
headerName
}
handleExceptModel
=
{
this
.
handleExceptModel
}
/
>
}
{
!
alarmStarted
&&
isShowActionBar
&&
<
ActionBar
isInitModel
=
{
isInitModel
}
isPermissionControl
=
{
isPermissionControl
}
bizPerActionBars
=
{
bizPerActionBars
}
PeractiveAction
=
{
activeAction
}
...
...
@@ -138,7 +147,7 @@ MaskContent.propTypes = {
layerConfig
:
PropTypes
.
object
,
onItemClick
:
PropTypes
.
func
,
// 是否支持多选
multiple
:
PropTypes
.
bool
,
//
multiple: PropTypes.bool,
subscribe
:
PropTypes
.
func
,
trigger
:
PropTypes
.
func
,
showExplain
:
PropTypes
.
bool
,
...
...
@@ -159,11 +168,13 @@ MaskContent.propTypes = {
editModelChange
:
PropTypes
.
func
,
focusPosition
:
PropTypes
.
func
,
isPermissionControl
:
PropTypes
.
bool
,
isInitModel
:
PropTypes
.
bool
,
isPanoramic
:
PropTypes
.
bool
,
bizPerActionBars
:
PropTypes
.
arrays
};
MaskContent
.
defaultProps
=
{
multiple
:
fals
e
};
//
MaskContent.defaultProps = {
// multiple: tru
e
//
};
export
default
MaskContent
;
mods/components/3dviewConvertor/view/View3D.js
View file @
f3029f99
...
...
@@ -131,6 +131,7 @@ class View3D extends Component {
startLoadExceptionArea
:
false
,
//是否开始加载区域marker
sideControlShow
:
false
,
//隐藏耳朵
isShowActionBar
:
true
,
//显示工具栏
isPanoramic
:
true
,
//是否全景
errorAreaId
:
''
,
//异常区域id
positionxyz
:
''
,
rightHeight
:
10
,
...
...
@@ -145,7 +146,8 @@ class View3D extends Component {
btnType
:
'isOk'
,
isback
:
false
},
isOutterView
:
true
//控制进入层级后是否显示marker
isOutterView
:
true
,
//控制进入层级后是否显示marker
isInitModel
:
false
//是否进入模型内部
};
getObjFromNet
(
view3dFile
,
(
objs
,
asyncModels
)
=>
{
...
...
@@ -265,7 +267,6 @@ class View3D extends Component {
}
const
object
=
evt
.
object
;
if
(
object
)
{
alert
(
1
)
this
.
cameraFactory
.
flyTo
({
position
:
object
.
position
.
toArray
(),
duration
:
6000
...
...
@@ -279,11 +280,25 @@ class View3D extends Component {
this
.
initModelDisplay
();
this
.
outlineFactory
.
toggleOutline
([]);
//清除选中
this
.
lensLevel
=
LENS_LEVEL
.
ROOT
;
this
.
setState
({
isOutterView
:
true
});
//恢复marker显示
if
(
this
.
state
.
isPanoramic
){
this
.
setState
({
isOutterView
:
true
,
isInitModel
:
false
,
isShowActionBar
:
true
});
//恢复marker显示
}
else
{
this
.
setState
({
isOutterView
:
true
,
isInitModel
:
false
,
isShowActionBar
:
false
});
//恢复marker显示
}
}
});
};
initModalback
=
()
=>
{
this
.
initModelDisplay
();
this
.
outlineFactory
.
toggleOutline
([]);
//清除选中
this
.
lensLevel
=
LENS_LEVEL
.
ROOT
;
if
(
this
.
state
.
isPanoramic
){
this
.
setState
({
isOutterView
:
true
,
isInitModel
:
false
,
isShowActionBar
:
true
});
//恢复marker显示
}
else
{
this
.
setState
({
isOutterView
:
true
,
isInitModel
:
false
,
isShowActionBar
:
false
});
//恢复marker显示
}
}
_bindPubSubEvents
=
()
=>
{
this
.
props
.
subscribe
(
eventTopics
.
base3d_view
,
(
topic
,
data
)
=>
{
console
.
log
(
`subscribe base3d_view
${
data
}
`
);
...
...
@@ -543,6 +558,7 @@ class View3D extends Component {
//双击进入模型内部
obj
.
on
(
EVENT_TYPE_CORE
.
DBLClick
,
evt
=>
{
if
(
this
.
state
.
isEditMode
===
false
)
{
me
.
setState
({
isInitModel
:
true
,
isShowActionBar
:
true
});
flyToSubView
(
me
,
obj
,
LENS_LEVEL
);
}
});
...
...
@@ -1305,7 +1321,6 @@ class View3D extends Component {
asyncLoadMarkerData
=
(
markerType
,
riskSourceId
)
=>
{
const
{
markers
,
abnormalStatus
}
=
this
.
state
;
this
.
setState
({
showMap
:
false
});
this
.
clearMarkers
();
initView3DAction
(
markerType
,
riskSourceId
,
abnormalStatus
).
then
(
d
=>
{
if
(
markerType
===
'fireResource'
)
{
markers
[
'hydrant'
]
=
d
.
filter
(
e
=>
e
.
type
===
'hydrant'
);
...
...
@@ -1374,7 +1389,7 @@ class View3D extends Component {
toggleRoad
:
!
isCancel
});
}
else
{
this
.
clearMarkers
();
//
this.clearMarkers();
if
(
!
isCancel
)
{
this
.
asyncLoadMarkerData
(
item
.
type
,
item
.
riskSourceId
);
}
else
{
...
...
@@ -1450,6 +1465,7 @@ class View3D extends Component {
this
.
setState
({
isEditMode
:
false
,
isShowActionBar
:
false
,
//隐藏工具栏
isPanoramic
:
false
,
startLoadExceptionArea
:
false
,
//隐藏marker
sideControlShow
:
false
//隐藏耳朵
});
...
...
@@ -1462,6 +1478,7 @@ class View3D extends Component {
this
.
setState
({
isShowActionBar
:
false
,
//隐藏工具栏
isPanoramic
:
false
,
startLoadExceptionArea
:
false
,
//隐藏marker
sideControlShow
:
false
//隐藏耳朵
});
...
...
@@ -1471,6 +1488,7 @@ class View3D extends Component {
sideControlShow
:
true
,
//耳朵
startLoadExceptionArea
:
false
,
//隐藏marker
isShowActionBar
:
false
,
//隐藏工具栏
isPanoramic
:
false
,
abnormalStatus
:
false
//点告警状态
});
...
...
@@ -1533,7 +1551,7 @@ class View3D extends Component {
getExceptionAreasList
=
()
=>
{
exceptionRegionListAction
().
then
(
data
=>
{
const
exceptionAreas
=
data
.
filter
(
e
=>
{
const
exceptionAreas
=
data
&&
data
.
filter
(
e
=>
{
return
e
.
routePath
&&
e
.
routePath
.
routePath
&&
e
.
routePath
.
routePath
.
length
>
0
;
});
this
.
setState
({
exceptionAreas
});
...
...
@@ -1550,9 +1568,12 @@ class View3D extends Component {
}
selectPolygonRegion
=
(
exceptionAreas
,
id
)
=>
{
const
regionConf
=
{
regionColor
:
'#76d015'
,
// 区域颜色
lineColor
:
'#ffffff'
,
// 边框颜色
regionOpacity
:
1
// 不透明度 (默认是 0.5 半透明)
// regionColor: '#76d015', // 区域颜色
// lineColor: '#ffffff', // 边框颜色
// regionOpacity: 1 // 不透明度 (默认是 0.5 半透明)
regionColor
:
'#02B00F'
,
// 区域颜色
lineColor
:
'#00FF70'
,
// 边框颜色
regionOpacity
:
0.3
};
if
(
id
&&
exceptionAreas
){
return
exceptionAreas
.
map
((
area
,
index
)
=>
{
...
...
@@ -1568,9 +1589,9 @@ class View3D extends Component {
renderPolygonRegion
=
(
exceptionAreas
)
=>
{
const
regionConf
=
{
regionColor
:
'#
76d015
'
,
// 区域颜色
lineColor
:
'#
ffffff
'
,
// 边框颜色
regionOpacity
:
1
// 不透明度 (默认是 0.5 半透明)
regionColor
:
'#
02B00F
'
,
// 区域颜色
lineColor
:
'#
00FF70
'
,
// 边框颜色
regionOpacity
:
0.3
};
return
exceptionAreas
.
map
((
area
,
index
)
=>
{
const
{
routePath
:
points
=
[]
}
=
area
.
routePath
;
...
...
@@ -1589,6 +1610,8 @@ class View3D extends Component {
pageType
:
'region'
,
//区域
sideControlShow
:
false
,
//隐藏耳朵
isShowActionBar
:
true
,
//显示工具栏
isInitModel
:
false
,
isPanoramic
:
true
,
startLoadExceptionArea
:
true
,
//显示marker,
headerName
:
''
,
//设置头名称
isEditMode
:
false
,
//推出编辑模式
...
...
@@ -1610,6 +1633,8 @@ class View3D extends Component {
this
.
setState
({
sideControlShow
:
true
,
//显示耳朵
isShowActionBar
:
false
,
//隐藏工具栏
isInitModel
:
false
,
isPanoramic
:
false
,
startLoadExceptionArea
:
false
,
//隐藏marker
headerName
:
'故障点模式'
,
//设置头名称
errorAreaId
:
areaId
...
...
@@ -1748,7 +1773,9 @@ class View3D extends Component {
promptData
,
pointType
,
isOutterView
,
routePathData
routePathData
,
isInitModel
,
isPanoramic
}
=
this
.
state
;
const
{
dimension
,
hiddenScreenSaver
,
editModelChange
,
isPermissionControl
,
bizPerActionBars
}
=
this
.
props
;
const
graphicProps
=
{
...
...
@@ -1812,6 +1839,9 @@ class View3D extends Component {
maskContent
=
{
<
MaskContent
planStarted
=
{
planStarted
}
isInitModel
=
{
isInitModel
}
isPanoramic
=
{
isPanoramic
}
initModalback
=
{
this
.
initModalback
}
alarmStarted
=
{
alarmStarted
}
onItemClick
=
{
this
.
changeMarkerType
}
layerConfig
=
{
layerConfig
}
...
...
mods/components/3dviewConvertor/view/actionbar/index.js
View file @
f3029f99
...
...
@@ -3,7 +3,7 @@ import PropTypes from 'prop-types';
import
classNames
from
'classnames'
;
import
{
Connect
}
from
'amos-framework'
;
import
{
SidePane
}
from
'amos-framework'
;
import
{
actionBars
}
from
'./../conf'
;
import
{
actionBars
,
actionBackBars
}
from
'./../conf'
;
import
{
eventTopics
}
from
'./../consts'
;
const
eventConnect
=
Connect
.
eventConnect
;
...
...
@@ -18,12 +18,17 @@ class ActionBar extends Component {
getActionBars
=
()
=>
{
const
{
isPermissionControl
=
false
,
bizPerActionBars
=
{}
}
=
this
.
props
;
if
(
is
PermissionContro
l
){
return
actionBa
rs
.
filter
(
bar
=>
bizPerActionBars
[
bar
.
key
]
&&
bizPerActionBars
[
bar
.
key
].
hasPermission
)
;
const
{
isPermissionControl
=
false
,
bizPerActionBars
=
{}
,
isInitModel
=
false
}
=
this
.
props
;
if
(
is
InitMode
l
){
return
actionBa
ckBars
;
}
else
{
return
actionBars
;
if
(
isPermissionControl
){
return
actionBars
.
filter
(
bar
=>
bizPerActionBars
[
bar
.
key
]
&&
bizPerActionBars
[
bar
.
key
].
hasPermission
);
}
else
{
return
actionBars
;
}
}
}
itemClick
=
(
item
)
=>
{
...
...
mods/components/3dviewConvertor/view/conf.js
View file @
f3029f99
...
...
@@ -86,7 +86,12 @@ export const actionBars = [
{
key
:
'edit-action'
,
icon
:
'editMode'
,
type
:
'editMode'
,
singleClick
:
false
,
label
:
'编辑'
,
showLabel
:
true
},
{
key
:
'search-action'
,
icon
:
'chaxun'
,
type
:
'search'
,
singleClick
:
true
,
label
:
'检索'
,
showLabel
:
true
}
];
/**
* 视图控制返回
*/
export
const
actionBackBars
=
[
{
key
:
'back-action'
,
icon
:
'impEquipment'
,
type
:
'back'
,
singleClick
:
true
,
label
:
'返回'
,
showLabel
:
true
}
];
/**
* 告警模式
*/
...
...
mods/components/3dviewConvertor/view/panoramic/statistical/SafetyExecuteList.js
View file @
f3029f99
...
...
@@ -60,7 +60,7 @@ export default class SafetyExecuteList extends Component {
}
});
this
.
setState
({
alarmData
:
data
,
alarmData
:
data
||
[]
,
selectValue
:
value
});
});
...
...
mods/components/3dviewConvertor/view/sideControl/index.js
View file @
f3029f99
...
...
@@ -21,7 +21,26 @@ class SideControl extends Component {
activeControl
:
[]
};
}
componentWillMount
(){
const
{
activeAction
}
=
this
.
props
;
let
activeControl
=
[];
if
(
activeAction
===
'panoramic'
){
let
_bizControls
=
bizControls
;
_bizControls
.
map
((
item
,
index
)
=>
{
return
activeControl
.
push
(
item
.
key
);
});
}
this
.
setState
({
activeControl
},()
=>
this
.
getAreaPoint
());
}
getAreaPoint
(){
const
{
activeControl
}
=
this
.
state
;
const
{
errorAreaId
:
riskSourceId
}
=
this
.
props
;
for
(
let
i
=
0
;
i
<
activeControl
.
length
;
i
++
){
this
.
props
.
onItemClick
&&
this
.
props
.
onItemClick
({
...
bizControls
[
i
]
,
riskSourceId
},
false
);
}
}
/**
* control 点击,第二次点击则取消
*/
...
...
report.20200618.143229.4036.0.001.json
0 → 100644
View file @
f3029f99
{
"header"
:
{
"reportVersion"
:
1
,
"event"
:
"Allocation failed - JavaScript heap out of memory"
,
"trigger"
:
"FatalError"
,
"filename"
:
"report.20200618.143229.4036.0.001.json"
,
"dumpEventTime"
:
"2020-06-18T14:32:29Z"
,
"dumpEventTimeStamp"
:
"1592461949012"
,
"processId"
:
4036
,
"cwd"
:
"G:
\\
workSpace
\\
amos-station-module-view"
,
"commandLine"
:
[
"node"
,
"G:
\\
workSpace
\\
amos-station-module-view
\\
node_modules
\\
.bin
\\\\
..
\\
webpack-dev-server
\\
bin
\\
webpack-dev-server.js"
],
"nodejsVersion"
:
"v12.16.1"
,
"wordSize"
:
64
,
"arch"
:
"x64"
,
"platform"
:
"win32"
,
"componentVersions"
:
{
"node"
:
"12.16.1"
,
"v8"
:
"7.8.279.23-node.31"
,
"uv"
:
"1.34.0"
,
"zlib"
:
"1.2.11"
,
"brotli"
:
"1.0.7"
,
"ares"
:
"1.15.0"
,
"modules"
:
"72"
,
"nghttp2"
:
"1.40.0"
,
"napi"
:
"5"
,
"llhttp"
:
"2.0.4"
,
"http_parser"
:
"2.9.3"
,
"openssl"
:
"1.1.1d"
,
"cldr"
:
"35.1"
,
"icu"
:
"64.2"
,
"tz"
:
"2019c"
,
"unicode"
:
"12.1"
},
"release"
:
{
"name"
:
"node"
,
"lts"
:
"Erbium"
,
"headersUrl"
:
"https://nodejs.org/download/release/v12.16.1/node-v12.16.1-headers.tar.gz"
,
"sourceUrl"
:
"https://nodejs.org/download/release/v12.16.1/node-v12.16.1.tar.gz"
,
"libUrl"
:
"https://nodejs.org/download/release/v12.16.1/win-x64/node.lib"
},
"osName"
:
"Windows_NT"
,
"osRelease"
:
"10.0.18362"
,
"osVersion"
:
"Windows 10 Pro"
,
"osMachine"
:
"x86_64"
,
"cpus"
:
[
{
"model"
:
"Intel(R) Core(TM) i7-9700 CPU @ 3.00GHz"
,
"speed"
:
3000
,
"user"
:
1499765
,
"nice"
:
0
,
"sys"
:
6794640
,
"idle"
:
53988546
,
"irq"
:
5353890
},
{
"model"
:
"Intel(R) Core(TM) i7-9700 CPU @ 3.00GHz"
,
"speed"
:
3000
,
"user"
:
6478265
,
"nice"
:
0
,
"sys"
:
890734
,
"idle"
:
54913531
,
"irq"
:
21500
},
{
"model"
:
"Intel(R) Core(TM) i7-9700 CPU @ 3.00GHz"
,
"speed"
:
3000
,
"user"
:
3002546
,
"nice"
:
0
,
"sys"
:
546000
,
"idle"
:
58733984
,
"irq"
:
11890
},
{
"model"
:
"Intel(R) Core(TM) i7-9700 CPU @ 3.00GHz"
,
"speed"
:
3000
,
"user"
:
2121640
,
"nice"
:
0
,
"sys"
:
334156
,
"idle"
:
59826734
,
"irq"
:
10531
},
{
"model"
:
"Intel(R) Core(TM) i7-9700 CPU @ 3.00GHz"
,
"speed"
:
3000
,
"user"
:
1444625
,
"nice"
:
0
,
"sys"
:
310437
,
"idle"
:
60527468
,
"irq"
:
8203
},
{
"model"
:
"Intel(R) Core(TM) i7-9700 CPU @ 3.00GHz"
,
"speed"
:
3000
,
"user"
:
1311000
,
"nice"
:
0
,
"sys"
:
343843
,
"idle"
:
60627671
,
"irq"
:
11531
},
{
"model"
:
"Intel(R) Core(TM) i7-9700 CPU @ 3.00GHz"
,
"speed"
:
3000
,
"user"
:
1206968
,
"nice"
:
0
,
"sys"
:
278375
,
"idle"
:
60797171
,
"irq"
:
6281
},
{
"model"
:
"Intel(R) Core(TM) i7-9700 CPU @ 3.00GHz"
,
"speed"
:
3000
,
"user"
:
1812531
,
"nice"
:
0
,
"sys"
:
806765
,
"idle"
:
59663218
,
"irq"
:
8671
}
],
"networkInterfaces"
:
[
{
"name"
:
"以太网"
,
"internal"
:
false
,
"mac"
:
"e4:54:e8:bc:0c:f8"
,
"address"
:
"fe80::fc0b:6bad:6f5:3715"
,
"netmask"
:
"ffff:ffff:ffff:ffff::"
,
"family"
:
"IPv6"
,
"scopeid"
:
9
},
{
"name"
:
"以太网"
,
"internal"
:
false
,
"mac"
:
"e4:54:e8:bc:0c:f8"
,
"address"
:
"172.16.3.26"
,
"netmask"
:
"255.255.0.0"
,
"family"
:
"IPv4"
},
{
"name"
:
"Loopback Pseudo-Interface 1"
,
"internal"
:
true
,
"mac"
:
"00:00:00:00:00:00"
,
"address"
:
"::1"
,
"netmask"
:
"ffff:ffff:ffff:ffff:ffff:ffff:ffff:ffff"
,
"family"
:
"IPv6"
,
"scopeid"
:
0
},
{
"name"
:
"Loopback Pseudo-Interface 1"
,
"internal"
:
true
,
"mac"
:
"00:00:00:00:00:00"
,
"address"
:
"127.0.0.1"
,
"netmask"
:
"255.0.0.0"
,
"family"
:
"IPv4"
}
],
"host"
:
"DESKTOP-KKH52JE"
},
"javascriptStack"
:
{
"message"
:
"No stack."
,
"stack"
:
[
"Unavailable."
]
},
"nativeStack"
:
[
{
"pc"
:
"0x00007ff6d32b19f9"
,
"symbol"
:
"std::basic_ostream<char,std::char_traits<char> >::operator<<+10873"
},
{
"pc"
:
"0x00007ff6d32b5e1c"
,
"symbol"
:
"std::basic_ostream<char,std::char_traits<char> >::operator<<+28316"
},
{
"pc"
:
"0x00007ff6d32b4dd8"
,
"symbol"
:
"std::basic_ostream<char,std::char_traits<char> >::operator<<+24152"
},
{
"pc"
:
"0x00007ff6d33b34cb"
,
"symbol"
:
"v8::base::CPU::has_sse+38363"
},
{
"pc"
:
"0x00007ff6d3bc9f4e"
,
"symbol"
:
"v8::Isolate::ReportExternalAllocationLimitReached+94"
},
{
"pc"
:
"0x00007ff6d3bb2021"
,
"symbol"
:
"v8::SharedArrayBuffer::Externalize+833"
},
{
"pc"
:
"0x00007ff6d3a7e57c"
,
"symbol"
:
"v8::internal::Heap::EphemeronKeyWriteBarrierFromCode+1436"
},
{
"pc"
:
"0x00007ff6d3a7a289"
,
"symbol"
:
"v8::internal::Heap::AddRetainedMap+2713"
},
{
"pc"
:
"0x00007ff6d3a9b4ab"
,
"symbol"
:
"v8::internal::Factory::NewFixedArrayWithFiller+107"
},
{
"pc"
:
"0x00007ff6d3a9b431"
,
"symbol"
:
"v8::internal::Factory::NewUninitializedFixedArray+65"
},
{
"pc"
:
"0x00007ff6d397857f"
,
"symbol"
:
"v8::debug::Script::GetIsolate+8527"
},
{
"pc"
:
"0x00007ff6d382824a"
,
"symbol"
:
"v8::internal::interpreter::JumpTableTargetOffsets::iterator::operator=+162938"
},
{
"pc"
:
"0x00007ff6d4014ddd"
,
"symbol"
:
"v8::internal::SetupIsolateDelegate::SetupHeap+546637"
},
{
"pc"
:
"0x000000f9166b8650"
,
"symbol"
:
""
}
],
"javascriptHeap"
:
{
"totalMemory"
:
2155196416
,
"totalCommittedMemory"
:
2155196416
,
"usedMemory"
:
2144464464
,
"availableMemory"
:
44760064
,
"memoryLimit"
:
2197815296
,
"heapSpaces"
:
{
"read_only_space"
:
{
"memorySize"
:
262144
,
"committedMemory"
:
262144
,
"capacity"
:
32808
,
"used"
:
32808
,
"available"
:
0
},
"new_space"
:
{
"memorySize"
:
1048576
,
"committedMemory"
:
1048576
,
"capacity"
:
1047456
,
"used"
:
0
,
"available"
:
1047456
},
"old_space"
:
{
"memorySize"
:
330973184
,
"committedMemory"
:
330973184
,
"capacity"
:
329047680
,
"used"
:
329047680
,
"available"
:
0
},
"code_space"
:
{
"memorySize"
:
2527232
,
"committedMemory"
:
2527232
,
"capacity"
:
2153376
,
"used"
:
2107104
,
"available"
:
46272
},
"map_space"
:
{
"memorySize"
:
8916992
,
"committedMemory"
:
8916992
,
"capacity"
:
2586560
,
"used"
:
2586560
,
"available"
:
0
},
"large_object_space"
:
{
"memorySize"
:
1810845696
,
"committedMemory"
:
1810845696
,
"capacity"
:
1810146024
,
"used"
:
1810146024
,
"available"
:
0
},
"code_large_object_space"
:
{
"memorySize"
:
622592
,
"committedMemory"
:
622592
,
"capacity"
:
544288
,
"used"
:
544288
,
"available"
:
0
},
"new_large_object_space"
:
{
"memorySize"
:
0
,
"committedMemory"
:
0
,
"capacity"
:
1047456
,
"used"
:
0
,
"available"
:
1047456
}
}
},
"resourceUsage"
:
{
"userCpuSeconds"
:
240.984
,
"kernelCpuSeconds"
:
26.953
,
"cpuConsumptionPercent"
:
4.00803
,
"maxRss"
:
2208890880
,
"pageFaults"
:
{
"IORequired"
:
14997832
,
"IONotRequired"
:
0
},
"fsActivity"
:
{
"reads"
:
10722
,
"writes"
:
232
}
},
"libuv"
:
[
],
"environmentVariables"
:
{
"=G:"
:
"G:
\\
workSpace
\\
amos-station-module-view"
,
"ALLUSERSPROFILE"
:
"C:
\\
ProgramData"
,
"APPDATA"
:
"C:
\\
Users
\\
DELL
\\
AppData
\\
Roaming"
,
"ChocolateyInstall"
:
"C:
\\
ProgramData
\\
chocolatey"
,
"ChocolateyLastPathUpdate"
:
"132289007529906412"
,
"CLASSPATH"
:
".;C:
\\
Program Files
\\
Java
\\
jdk1.8.0_201
\\
lib
\\
dt.jar;C:
\\
Program Files
\\
Java
\\
jdk1.8.0_201
\\
lib
\\
tools.jar;"
,
"COLORTERM"
:
"truecolor"
,
"CommonProgramFiles"
:
"C:
\\
Program Files
\\
Common Files"
,
"CommonProgramFiles(x86)"
:
"C:
\\
Program Files (x86)
\\
Common Files"
,
"CommonProgramW6432"
:
"C:
\\
Program Files
\\
Common Files"
,
"COMPUTERNAME"
:
"DESKTOP-KKH52JE"
,
"ComSpec"
:
"C:
\\
Windows
\\
system32
\\
cmd.exe"
,
"dp0"
:
"G:
\\
workSpace
\\
amos-station-module-view
\\
node_modules
\\
.bin
\\
"
,
"DriverData"
:
"C:
\\
Windows
\\
System32
\\
Drivers
\\
DriverData"
,
"FPS_BROWSER_APP_PROFILE_STRING"
:
"Internet Explorer"
,
"FPS_BROWSER_USER_PROFILE_STRING"
:
"Default"
,
"GIT_ASKPASS"
:
"c:
\\
Users
\\
DELL
\\
AppData
\\
Local
\\
Programs
\\
Microsoft VS Code
\\
resources
\\
app
\\
extensions
\\
git
\\
dist
\\
askpass.sh"
,
"HOME"
:
"C:
\\
Users
\\
DELL"
,
"HOMEDRIVE"
:
"C:"
,
"HOMEPATH"
:
"
\\
Users
\\
DELL"
,
"INIT_CWD"
:
"G:
\\
workSpace
\\
amos-station-module-view"
,
"JAVA_HOME"
:
"C:
\\
Program Files
\\
Java
\\
jdk1.8.0_201"
,
"LANG"
:
"zh_CN.UTF-8"
,
"LOCALAPPDATA"
:
"C:
\\
Users
\\
DELL
\\
AppData
\\
Local"
,
"LOGONSERVER"
:
"
\\\\
DESKTOP-KKH52JE"
,
"NODE"
:
"F:
\\
install
\\
nodejs
\\
node.exe"
,
"NODE_ENV"
:
"development "
,
"NODE_EXE"
:
"F:
\\
install
\\
nodejs
\\\\
node.exe"
,
"NODE_PATH"
:
"F:
\\
install
\\
nodejs
\\
node_modules"
,
"NPM_CLI_JS"
:
"F:
\\
install
\\
nodejs
\\\\
node_modules
\\
npm
\\
bin
\\
npm-cli.js"
,
"npm_config_access"
:
""
,
"npm_config_allow_same_version"
:
""
,
"npm_config_also"
:
""
,
"npm_config_always_auth"
:
""
,
"npm_config_argv"
:
"{
\"
remain
\"
:[],
\"
cooked
\"
:[
\"
start
\"
],
\"
original
\"
:[
\"
start
\"
]}"
,
"npm_config_audit"
:
"true"
,
"npm_config_audit_level"
:
"low"
,
"npm_config_auth_type"
:
"legacy"
,
"npm_config_before"
:
""
,
"npm_config_bin_links"
:
"true"
,
"npm_config_browser"
:
""
,
"npm_config_ca"
:
""
,
"npm_config_cache"
:
"F:
\\
install
\\
nodejs
\\
node_cache"
,
"npm_config_cache_lock_retries"
:
"10"
,
"npm_config_cache_lock_stale"
:
"60000"
,
"npm_config_cache_lock_wait"
:
"10000"
,
"npm_config_cache_max"
:
"Infinity"
,
"npm_config_cache_min"
:
"10"
,
"npm_config_cafile"
:
""
,
"npm_config_cert"
:
""
,
"npm_config_cidr"
:
""
,
"npm_config_color"
:
"true"
,
"npm_config_commit_hooks"
:
"true"
,
"npm_config_depth"
:
"Infinity"
,
"npm_config_description"
:
"true"
,
"npm_config_dev"
:
""
,
"npm_config_dry_run"
:
""
,
"npm_config_editor"
:
"notepad.exe"
,
"npm_config_engine_strict"
:
""
,
"npm_config_fetch_retries"
:
"2"
,
"npm_config_fetch_retry_factor"
:
"10"
,
"npm_config_fetch_retry_maxtimeout"
:
"60000"
,
"npm_config_fetch_retry_mintimeout"
:
"10000"
,
"npm_config_force"
:
""
,
"npm_config_format_package_lock"
:
"true"
,
"npm_config_fund"
:
"true"
,
"npm_config_git"
:
"git"
,
"npm_config_git_tag_version"
:
"true"
,
"npm_config_global"
:
""
,
"npm_config_globalconfig"
:
"F:
\\
install
\\
nodejs
\\
node_global
\\
etc
\\
npmrc"
,
"npm_config_globalignorefile"
:
"F:
\\
install
\\
nodejs
\\
node_global
\\
etc
\\
npmignore"
,
"npm_config_global_style"
:
""
,
"npm_config_group"
:
""
,
"npm_config_ham_it_up"
:
""
,
"npm_config_heading"
:
"npm"
,
"npm_config_https_proxy"
:
""
,
"npm_config_if_present"
:
""
,
"npm_config_ignore_prepublish"
:
""
,
"npm_config_ignore_scripts"
:
""
,
"npm_config_init_author_email"
:
""
,
"npm_config_init_author_name"
:
""
,
"npm_config_init_author_url"
:
""
,
"npm_config_init_license"
:
"ISC"
,
"npm_config_init_module"
:
"C:
\\
Users
\\
DELL
\\
.npm-init.js"
,
"npm_config_init_version"
:
"1.0.0"
,
"npm_config_json"
:
""
,
"npm_config_key"
:
""
,
"npm_config_legacy_bundling"
:
""
,
"npm_config_link"
:
""
,
"npm_config_local_address"
:
""
,
"npm_config_loglevel"
:
"notice"
,
"npm_config_logs_max"
:
"10"
,
"npm_config_long"
:
""
,
"npm_config_maxsockets"
:
"50"
,
"npm_config_message"
:
"%s"
,
"npm_config_metrics_registry"
:
"http://172.16.11.26:9696/"
,
"npm_config_node_gyp"
:
"F:
\\
install
\\
nodejs
\\
node_modules
\\
npm
\\
node_modules
\\
node-gyp
\\
bin
\\
node-gyp.js"
,
"npm_config_node_options"
:
""
,
"npm_config_node_version"
:
"12.16.1"
,
"npm_config_noproxy"
:
""
,
"npm_config_npm_set_registry_http___registry_npm_taobao_org_"
:
"true"
,
"npm_config_offline"
:
""
,
"npm_config_onload_script"
:
""
,
"npm_config_only"
:
""
,
"npm_config_optional"
:
"true"
,
"npm_config_otp"
:
""
,
"npm_config_package_lock"
:
""
,
"npm_config_package_lock_only"
:
""
,
"npm_config_parseable"
:
""
,
"npm_config_prefer_offline"
:
""
,
"npm_config_prefer_online"
:
""
,
"npm_config_prefix"
:
"F:
\\
install
\\
nodejs
\\
node_global"
,
"npm_config_preid"
:
""
,
"npm_config_production"
:
""
,
"npm_config_progress"
:
"true"
,
"npm_config_proxy"
:
""
,
"npm_config_read_only"
:
""
,
"npm_config_rebuild_bundle"
:
"true"
,
"npm_config_registry"
:
"http://172.16.11.26:9696/"
,
"npm_config_rollback"
:
"true"
,
"npm_config_sass_binary_site"
:
"http://172.16.11.26:8888/node-sass"
,
"npm_config_save"
:
""
,
"npm_config_save_bundle"
:
""
,
"npm_config_save_dev"
:
""
,
"npm_config_save_exact"
:
""
,
"npm_config_save_optional"
:
""
,
"npm_config_save_prefix"
:
"^"
,
"npm_config_save_prod"
:
""
,
"npm_config_scope"
:
""
,
"npm_config_scripts_prepend_node_path"
:
"warn-only"
,
"npm_config_script_shell"
:
""
,
"npm_config_searchexclude"
:
""
,
"npm_config_searchlimit"
:
"20"
,
"npm_config_searchopts"
:
""
,
"npm_config_searchstaleness"
:
"900"
,
"npm_config_send_metrics"
:
""
,
"npm_config_shell"
:
"C:
\\
Windows
\\
system32
\\
cmd.exe"
,
"npm_config_shrinkwrap"
:
"true"
,
"npm_config_sign_git_commit"
:
""
,
"npm_config_sign_git_tag"
:
""
,
"npm_config_sso_poll_frequency"
:
"500"
,
"npm_config_sso_type"
:
"oauth"
,
"npm_config_strict_ssl"
:
"true"
,
"npm_config_tag"
:
"latest"
,
"npm_config_tag_version_prefix"
:
"v"
,
"npm_config_timing"
:
""
,
"npm_config_tmp"
:
"C:
\\
Users
\\
DELL
\\
AppData
\\
Local
\\
Temp"
,
"npm_config_umask"
:
"0000"
,
"npm_config_unicode"
:
""
,
"npm_config_unsafe_perm"
:
"true"
,
"npm_config_update_notifier"
:
"true"
,
"npm_config_usage"
:
""
,
"npm_config_user"
:
""
,
"npm_config_userconfig"
:
"C:
\\
Users
\\
DELL
\\
.npmrc"
,
"npm_config_user_agent"
:
"npm/6.13.4 node/v12.16.1 win32 x64"
,
"npm_config_version"
:
""
,
"npm_config_versions"
:
""
,
"npm_config_viewer"
:
"browser"
,
"npm_execpath"
:
"F:
\\
install
\\
nodejs
\\
node_modules
\\
npm
\\
bin
\\
npm-cli.js"
,
"npm_lifecycle_event"
:
"start"
,
"npm_lifecycle_script"
:
"set NODE_ENV=development && webpack-dev-server"
,
"npm_node_execpath"
:
"F:
\\
install
\\
nodejs
\\
node.exe"
,
"npm_package_author_name"
:
"ilex.h"
,
"npm_package_dependencies_amos_3d"
:
"^2.x"
,
"npm_package_dependencies_amos_designer"
:
"^1.x"
,
"npm_package_dependencies_amos_viz"
:
"^1.x"
,
"npm_package_dependencies_amos_websocket"
:
"^1.0.3"
,
"npm_package_dependencies_ray_hotkeys"
:
"^1.0.0"
,
"npm_package_description"
:
"1.复制amos-station-module-view的mods文件夹到mos-iot-graphmod根目录"
,
"npm_package_devDependencies_amos_build"
:
"^3.x"
,
"npm_package_devDependencies_amos_framework"
:
"^1.x"
,
"npm_package_devDependencies_amos_iot_3dgraph"
:
"^1.0.3"
,
"npm_package_devDependencies_amos_iot_webstudio"
:
"^1.x"
,
"npm_package_devDependencies_amos_processor"
:
"^2.x"
,
"npm_package_devDependencies_amos_security"
:
"^2.x"
,
"npm_package_devDependencies_eslint_config_ray"
:
"^1.0.25"
,
"npm_package_devDependencies_ray_code_split"
:
"^1.0.1"
,
"npm_package_devDependencies_ray_mediaquery"
:
"^1.0.0"
,
"npm_package_devDependencies_ray_progress"
:
"^1.0.0"
,
"npm_package_devDependencies_react"
:
"~16.3.2"
,
"npm_package_devDependencies_react_dom"
:
"~16.3.3"
,
"npm_package_devDependencies_stylelint_config_ray"
:
"^2.0.0"
,
"npm_package_gitHead"
:
"44554099235d7b2e11b5ba26e90826299b8b960b"
,
"npm_package_main"
:
"./lib/index.js"
,
"npm_package_name"
:
"amos-station-module-view"
,
"npm_package_publishConfig_registry"
:
"http://172.16.11.26:9696"
,
"npm_package_readmeFilename"
:
"readme.md"
,
"npm_package_scripts_build"
:
"ray-build react && ray-build stylescss"
,
"npm_package_scripts_clean"
:
"rimraf lib dist released"
,
"npm_package_scripts_lint"
:
"eslint src tests"
,
"npm_package_scripts_lint_fix"
:
"npm run lint -- --fix"
,
"npm_package_scripts_pub"
:
"npm run build && amos-run dllreleased"
,
"npm_package_scripts_start"
:
"set NODE_ENV=development && webpack-dev-server"
,
"npm_package_scripts_stylelint"
:
"stylelint src"
,
"npm_package_scripts_watch"
:
"webpack -w"
,
"npm_package_version"
:
"1.0.0"
,
"NPM_PREFIX_NPM_CLI_JS"
:
"F:
\\
install
\\
nodejs
\\
node_global
\\
node_modules
\\
npm
\\
bin
\\
npm-cli.js"
,
"NUMBER_OF_PROCESSORS"
:
"8"
,
"NVM_HOME"
:
"C:
\\
Users
\\
DELL
\\
AppData
\\
Roaming
\\
nvm"
,
"NVM_SYMLINK"
:
"C:
\\
Program Files
\\
nodejs"
,
"OneDrive"
:
"C:
\\
Users
\\
DELL
\\
OneDrive"
,
"OS"
:
"Windows_NT"
,
"Path"
:
"F:
\\
install
\\
nodejs
\\
node_modules
\\
npm
\\
node_modules
\\
npm-lifecycle
\\
node-gyp-bin;G:
\\
workSpace
\\
amos-station-module-view
\\
node_modules
\\
.bin;C:
\\
Program Files (x86)
\\
Common Files
\\
Oracle
\\
Java
\\
javapath;C:
\\
Windows
\\
system32;C:
\\
Windows;C:
\\
Windows
\\
System32
\\
Wbem;C:
\\
Windows
\\
System32
\\
WindowsPowerShell
\\
v1.0
\\
;C:
\\
Windows
\\
System32
\\
OpenSSH
\\
;C:
\\
Program Files (x86)
\\
NVIDIA Corporation
\\
PhysX
\\
Common;D:
\\
Program Files
\\
Git
\\
cmd;C:
\\
Program Files
\\
TortoiseGit
\\
bin;C:
\\
Users
\\
DELL
\\
AppData
\\
Roaming
\\
nvm;C:
\\
Program Files
\\
NVIDIA Corporation
\\
NVIDIA NvDLISR;C:
\\
Program Files
\\
TortoiseSVN
\\
bin;C:
\\
ProgramData
\\
chocolatey
\\
bin;F:
\\
install
\\
nodejs
\\
node_global;F:
\\
install
\\
Python27;C:
\\
Program Files
\\
Java
\\
jdk1.8.0_201
\\
bin;F:
\\
install
\\
nodejs
\\
;C:
\\
Users
\\
DELL
\\
AppData
\\
Local
\\
Microsoft
\\
WindowsApps;
\"
C:
\\
Program Files
\\
Java
\\
jdk1.8.0_201
\\
bin;C:
\\
Program Files
\\
Java
\\
jdk1.8.0_201
\\
jre
\\
bin
\"
;C:
\\
Users
\\
DELL
\\
AppData
\\
Roaming
\\
nvm;C:
\\
Program Files
\\
nodejs;D:
\\
develop
\\
nodejs
\\
node_global;C:
\\
Users
\\
DELL
\\
AppData
\\
Roaming
\\
npm;C:
\\
Users
\\
DELL
\\
AppData
\\
Local
\\
Programs
\\
Microsoft VS Code
\\
bin"
,
"PATHEXT"
:
".COM;.EXE;.BAT;.CMD;.VBS;.VBE;.JSE;.WSF;.WSH;.MSC;.CPL"
,
"PROCESSOR_ARCHITECTURE"
:
"AMD64"
,
"PROCESSOR_IDENTIFIER"
:
"Intel64 Family 6 Model 158 Stepping 13, GenuineIntel"
,
"PROCESSOR_LEVEL"
:
"6"
,
"PROCESSOR_REVISION"
:
"9e0d"
,
"ProgramData"
:
"C:
\\
ProgramData"
,
"ProgramFiles"
:
"C:
\\
Program Files"
,
"ProgramFiles(x86)"
:
"C:
\\
Program Files (x86)"
,
"ProgramW6432"
:
"C:
\\
Program Files"
,
"PROMPT"
:
"$P$G"
,
"PSModulePath"
:
"C:
\\
Users
\\
DELL
\\
Documents
\\
WindowsPowerShell
\\
Modules;C:
\\
Program Files
\\
WindowsPowerShell
\\
Modules;C:
\\
Windows
\\
system32
\\
WindowsPowerShell
\\
v1.0
\\
Modules"
,
"PUBLIC"
:
"C:
\\
Users
\\
Public"
,
"SESSIONNAME"
:
"Console"
,
"SystemDrive"
:
"C:"
,
"SystemRoot"
:
"C:
\\
Windows"
,
"TEMP"
:
"C:
\\
Users
\\
DELL
\\
AppData
\\
Local
\\
Temp"
,
"TERM_PROGRAM"
:
"vscode"
,
"TERM_PROGRAM_VERSION"
:
"1.45.1"
,
"TMP"
:
"C:
\\
Users
\\
DELL
\\
AppData
\\
Local
\\
Temp"
,
"USERDOMAIN"
:
"DESKTOP-KKH52JE"
,
"USERDOMAIN_ROAMINGPROFILE"
:
"DESKTOP-KKH52JE"
,
"USERNAME"
:
"DELL"
,
"USERPROFILE"
:
"C:
\\
Users
\\
DELL"
,
"VSCODE_GIT_ASKPASS_MAIN"
:
"c:
\\
Users
\\
DELL
\\
AppData
\\
Local
\\
Programs
\\
Microsoft VS Code
\\
resources
\\
app
\\
extensions
\\
git
\\
dist
\\
askpass-main.js"
,
"VSCODE_GIT_ASKPASS_NODE"
:
"C:
\\
Users
\\
DELL
\\
AppData
\\
Local
\\
Programs
\\
Microsoft VS Code
\\
Code.exe"
,
"VSCODE_GIT_IPC_HANDLE"
:
"
\\\\
.
\\
pipe
\\
vscode-git-11879c72ba-sock"
,
"windir"
:
"C:
\\
Windows"
,
"_prog"
:
"node"
},
"sharedObjects"
:
[
"F:
\\
install
\\
nodejs
\\
node.exe"
,
"C:
\\
Windows
\\
SYSTEM32
\\
ntdll.dll"
,
"C:
\\
Windows
\\
System32
\\
KERNEL32.DLL"
,
"C:
\\
Windows
\\
System32
\\
KERNELBASE.dll"
,
"C:
\\
Windows
\\
System32
\\
WS2_32.dll"
,
"C:
\\
Windows
\\
System32
\\
RPCRT4.dll"
,
"C:
\\
Windows
\\
System32
\\
PSAPI.DLL"
,
"C:
\\
Windows
\\
System32
\\
ADVAPI32.dll"
,
"C:
\\
Windows
\\
System32
\\
msvcrt.dll"
,
"C:
\\
Windows
\\
System32
\\
sechost.dll"
,
"C:
\\
Windows
\\
System32
\\
USER32.dll"
,
"C:
\\
Windows
\\
System32
\\
win32u.dll"
,
"C:
\\
Windows
\\
SYSTEM32
\\
dbghelp.dll"
,
"C:
\\
Windows
\\
System32
\\
GDI32.dll"
,
"C:
\\
Windows
\\
System32
\\
ucrtbase.dll"
,
"C:
\\
Windows
\\
System32
\\
gdi32full.dll"
,
"C:
\\
Windows
\\
System32
\\
msvcp_win.dll"
,
"C:
\\
Windows
\\
System32
\\
CRYPT32.dll"
,
"C:
\\
Windows
\\
System32
\\
MSASN1.dll"
,
"C:
\\
Windows
\\
System32
\\
bcrypt.dll"
,
"C:
\\
Windows
\\
SYSTEM32
\\
USERENV.dll"
,
"C:
\\
Windows
\\
System32
\\
profapi.dll"
,
"C:
\\
Windows
\\
SYSTEM32
\\
IPHLPAPI.DLL"
,
"C:
\\
Windows
\\
SYSTEM32
\\
WINMM.dll"
,
"C:
\\
Windows
\\
SYSTEM32
\\
winmmbase.dll"
,
"C:
\\
Windows
\\
System32
\\
cfgmgr32.dll"
,
"C:
\\
Windows
\\
System32
\\
bcryptPrimitives.dll"
,
"C:
\\
Windows
\\
System32
\\
IMM32.DLL"
,
"C:
\\
Windows
\\
System32
\\
powrprof.dll"
,
"C:
\\
Windows
\\
System32
\\
UMPDC.dll"
,
"C:
\\
Windows
\\
SYSTEM32
\\
CRYPTBASE.DLL"
,
"C:
\\
Windows
\\
system32
\\
uxtheme.dll"
,
"C:
\\
Windows
\\
System32
\\
combase.dll"
,
"C:
\\
Windows
\\
system32
\\
mswsock.dll"
,
"C:
\\
Windows
\\
System32
\\
kernel.appcore.dll"
,
"C:
\\
Windows
\\
System32
\\
NSI.dll"
,
"C:
\\
Windows
\\
SYSTEM32
\\
dhcpcsvc6.DLL"
,
"C:
\\
Windows
\\
SYSTEM32
\\
dhcpcsvc.DLL"
,
"C:
\\
Windows
\\
SYSTEM32
\\
DNSAPI.dll"
,
"
\\\\
?
\\
G:
\\
workSpace
\\
amos-station-module-view
\\
node_modules
\\
node-sass
\\
vendor
\\
win32-x64-72
\\
binding.node"
,
"C:
\\
Windows
\\
system32
\\
napinsp.dll"
,
"C:
\\
Windows
\\
system32
\\
pnrpnsp.dll"
,
"C:
\\
Windows
\\
System32
\\
winrnr.dll"
,
"C:
\\
Windows
\\
system32
\\
NLAapi.dll"
,
"C:
\\
Windows
\\
system32
\\
wshbth.dll"
]
}
\ No newline at end of file
report.20200618.185839.18116.0.001.json
0 → 100644
View file @
f3029f99
{
"header"
:
{
"reportVersion"
:
1
,
"event"
:
"Allocation failed - JavaScript heap out of memory"
,
"trigger"
:
"FatalError"
,
"filename"
:
"report.20200618.185839.18116.0.001.json"
,
"dumpEventTime"
:
"2020-06-18T18:58:39Z"
,
"dumpEventTimeStamp"
:
"1592477919193"
,
"processId"
:
18116
,
"cwd"
:
"G:
\\
workSpace
\\
amos-station-module-view"
,
"commandLine"
:
[
"node"
,
"G:
\\
workSpace
\\
amos-station-module-view
\\
node_modules
\\
.bin
\\\\
..
\\
webpack-dev-server
\\
bin
\\
webpack-dev-server.js"
],
"nodejsVersion"
:
"v12.16.1"
,
"wordSize"
:
64
,
"arch"
:
"x64"
,
"platform"
:
"win32"
,
"componentVersions"
:
{
"node"
:
"12.16.1"
,
"v8"
:
"7.8.279.23-node.31"
,
"uv"
:
"1.34.0"
,
"zlib"
:
"1.2.11"
,
"brotli"
:
"1.0.7"
,
"ares"
:
"1.15.0"
,
"modules"
:
"72"
,
"nghttp2"
:
"1.40.0"
,
"napi"
:
"5"
,
"llhttp"
:
"2.0.4"
,
"http_parser"
:
"2.9.3"
,
"openssl"
:
"1.1.1d"
,
"cldr"
:
"35.1"
,
"icu"
:
"64.2"
,
"tz"
:
"2019c"
,
"unicode"
:
"12.1"
},
"release"
:
{
"name"
:
"node"
,
"lts"
:
"Erbium"
,
"headersUrl"
:
"https://nodejs.org/download/release/v12.16.1/node-v12.16.1-headers.tar.gz"
,
"sourceUrl"
:
"https://nodejs.org/download/release/v12.16.1/node-v12.16.1.tar.gz"
,
"libUrl"
:
"https://nodejs.org/download/release/v12.16.1/win-x64/node.lib"
},
"osName"
:
"Windows_NT"
,
"osRelease"
:
"10.0.18362"
,
"osVersion"
:
"Windows 10 Pro"
,
"osMachine"
:
"x86_64"
,
"cpus"
:
[
{
"model"
:
"Intel(R) Core(TM) i7-9700 CPU @ 3.00GHz"
,
"speed"
:
3000
,
"user"
:
2898437
,
"nice"
:
0
,
"sys"
:
8244000
,
"idle"
:
67110687
,
"irq"
:
6188531
},
{
"model"
:
"Intel(R) Core(TM) i7-9700 CPU @ 3.00GHz"
,
"speed"
:
3000
,
"user"
:
11940125
,
"nice"
:
0
,
"sys"
:
1324234
,
"idle"
:
64988343
,
"irq"
:
31421
},
{
"model"
:
"Intel(R) Core(TM) i7-9700 CPU @ 3.00GHz"
,
"speed"
:
3000
,
"user"
:
5504921
,
"nice"
:
0
,
"sys"
:
869187
,
"idle"
:
71878593
,
"irq"
:
20859
},
{
"model"
:
"Intel(R) Core(TM) i7-9700 CPU @ 3.00GHz"
,
"speed"
:
3000
,
"user"
:
4057000
,
"nice"
:
0
,
"sys"
:
619546
,
"idle"
:
73576156
,
"irq"
:
19015
},
{
"model"
:
"Intel(R) Core(TM) i7-9700 CPU @ 3.00GHz"
,
"speed"
:
3000
,
"user"
:
3039765
,
"nice"
:
0
,
"sys"
:
581234
,
"idle"
:
74631703
,
"irq"
:
15453
},
{
"model"
:
"Intel(R) Core(TM) i7-9700 CPU @ 3.00GHz"
,
"speed"
:
3000
,
"user"
:
2824984
,
"nice"
:
0
,
"sys"
:
639890
,
"idle"
:
74787812
,
"irq"
:
21796
},
{
"model"
:
"Intel(R) Core(TM) i7-9700 CPU @ 3.00GHz"
,
"speed"
:
3000
,
"user"
:
2713828
,
"nice"
:
0
,
"sys"
:
510171
,
"idle"
:
75028687
,
"irq"
:
11781
},
{
"model"
:
"Intel(R) Core(TM) i7-9700 CPU @ 3.00GHz"
,
"speed"
:
3000
,
"user"
:
3379328
,
"nice"
:
0
,
"sys"
:
1191296
,
"idle"
:
73682062
,
"irq"
:
14000
}
],
"networkInterfaces"
:
[
{
"name"
:
"以太网"
,
"internal"
:
false
,
"mac"
:
"e4:54:e8:bc:0c:f8"
,
"address"
:
"fe80::fc0b:6bad:6f5:3715"
,
"netmask"
:
"ffff:ffff:ffff:ffff::"
,
"family"
:
"IPv6"
,
"scopeid"
:
9
},
{
"name"
:
"以太网"
,
"internal"
:
false
,
"mac"
:
"e4:54:e8:bc:0c:f8"
,
"address"
:
"172.16.3.26"
,
"netmask"
:
"255.255.0.0"
,
"family"
:
"IPv4"
},
{
"name"
:
"Loopback Pseudo-Interface 1"
,
"internal"
:
true
,
"mac"
:
"00:00:00:00:00:00"
,
"address"
:
"::1"
,
"netmask"
:
"ffff:ffff:ffff:ffff:ffff:ffff:ffff:ffff"
,
"family"
:
"IPv6"
,
"scopeid"
:
0
},
{
"name"
:
"Loopback Pseudo-Interface 1"
,
"internal"
:
true
,
"mac"
:
"00:00:00:00:00:00"
,
"address"
:
"127.0.0.1"
,
"netmask"
:
"255.0.0.0"
,
"family"
:
"IPv4"
}
],
"host"
:
"DESKTOP-KKH52JE"
},
"javascriptStack"
:
{
"message"
:
"No stack."
,
"stack"
:
[
"Unavailable."
]
},
"nativeStack"
:
[
{
"pc"
:
"0x00007ff6d32b19f9"
,
"symbol"
:
"std::basic_ostream<char,std::char_traits<char> >::operator<<+10873"
},
{
"pc"
:
"0x00007ff6d32b5e1c"
,
"symbol"
:
"std::basic_ostream<char,std::char_traits<char> >::operator<<+28316"
},
{
"pc"
:
"0x00007ff6d32b4dd8"
,
"symbol"
:
"std::basic_ostream<char,std::char_traits<char> >::operator<<+24152"
},
{
"pc"
:
"0x00007ff6d33b34cb"
,
"symbol"
:
"v8::base::CPU::has_sse+38363"
},
{
"pc"
:
"0x00007ff6d3bc9f4e"
,
"symbol"
:
"v8::Isolate::ReportExternalAllocationLimitReached+94"
},
{
"pc"
:
"0x00007ff6d3bb2021"
,
"symbol"
:
"v8::SharedArrayBuffer::Externalize+833"
},
{
"pc"
:
"0x00007ff6d3a7e57c"
,
"symbol"
:
"v8::internal::Heap::EphemeronKeyWriteBarrierFromCode+1436"
},
{
"pc"
:
"0x00007ff6d3a7a289"
,
"symbol"
:
"v8::internal::Heap::AddRetainedMap+2713"
},
{
"pc"
:
"0x00007ff6d3a9b4ab"
,
"symbol"
:
"v8::internal::Factory::NewFixedArrayWithFiller+107"
},
{
"pc"
:
"0x00007ff6d3a9b431"
,
"symbol"
:
"v8::internal::Factory::NewUninitializedFixedArray+65"
},
{
"pc"
:
"0x00007ff6d397857f"
,
"symbol"
:
"v8::debug::Script::GetIsolate+8527"
},
{
"pc"
:
"0x00007ff6d382824a"
,
"symbol"
:
"v8::internal::interpreter::JumpTableTargetOffsets::iterator::operator=+162938"
},
{
"pc"
:
"0x00007ff6d4014ddd"
,
"symbol"
:
"v8::internal::SetupIsolateDelegate::SetupHeap+546637"
},
{
"pc"
:
"0x000002f95c047fba"
,
"symbol"
:
""
}
],
"javascriptHeap"
:
{
"totalMemory"
:
2163748864
,
"totalCommittedMemory"
:
2163748864
,
"usedMemory"
:
2150839864
,
"availableMemory"
:
36161344
,
"memoryLimit"
:
2197815296
,
"heapSpaces"
:
{
"read_only_space"
:
{
"memorySize"
:
262144
,
"committedMemory"
:
262144
,
"capacity"
:
32808
,
"used"
:
32808
,
"available"
:
0
},
"new_space"
:
{
"memorySize"
:
1048576
,
"committedMemory"
:
1048576
,
"capacity"
:
1047456
,
"used"
:
0
,
"available"
:
1047456
},
"old_space"
:
{
"memorySize"
:
324419584
,
"committedMemory"
:
324419584
,
"capacity"
:
322463464
,
"used"
:
322463464
,
"available"
:
0
},
"code_space"
:
{
"memorySize"
:
2265088
,
"committedMemory"
:
2265088
,
"capacity"
:
2020416
,
"used"
:
2020416
,
"available"
:
0
},
"map_space"
:
{
"memorySize"
:
11276288
,
"committedMemory"
:
11276288
,
"capacity"
:
2581120
,
"used"
:
2581120
,
"available"
:
0
},
"large_object_space"
:
{
"memorySize"
:
1823854592
,
"committedMemory"
:
1823854592
,
"capacity"
:
1823197768
,
"used"
:
1823197768
,
"available"
:
0
},
"code_large_object_space"
:
{
"memorySize"
:
622592
,
"committedMemory"
:
622592
,
"capacity"
:
544288
,
"used"
:
544288
,
"available"
:
0
},
"new_large_object_space"
:
{
"memorySize"
:
0
,
"committedMemory"
:
0
,
"capacity"
:
1047456
,
"used"
:
0
,
"available"
:
1047456
}
}
},
"resourceUsage"
:
{
"userCpuSeconds"
:
447.921
,
"kernelCpuSeconds"
:
45.625
,
"cpuConsumptionPercent"
:
3.09744
,
"maxRss"
:
2173485056
,
"pageFaults"
:
{
"IORequired"
:
26696721
,
"IONotRequired"
:
0
},
"fsActivity"
:
{
"reads"
:
10030
,
"writes"
:
254
}
},
"libuv"
:
[
],
"environmentVariables"
:
{
"=G:"
:
"G:
\\
workSpace
\\
amos-station-module-view"
,
"ALLUSERSPROFILE"
:
"C:
\\
ProgramData"
,
"APPDATA"
:
"C:
\\
Users
\\
DELL
\\
AppData
\\
Roaming"
,
"ChocolateyInstall"
:
"C:
\\
ProgramData
\\
chocolatey"
,
"ChocolateyLastPathUpdate"
:
"132289007529906412"
,
"CLASSPATH"
:
".;C:
\\
Program Files
\\
Java
\\
jdk1.8.0_201
\\
lib
\\
dt.jar;C:
\\
Program Files
\\
Java
\\
jdk1.8.0_201
\\
lib
\\
tools.jar;"
,
"COLORTERM"
:
"truecolor"
,
"CommonProgramFiles"
:
"C:
\\
Program Files
\\
Common Files"
,
"CommonProgramFiles(x86)"
:
"C:
\\
Program Files (x86)
\\
Common Files"
,
"CommonProgramW6432"
:
"C:
\\
Program Files
\\
Common Files"
,
"COMPUTERNAME"
:
"DESKTOP-KKH52JE"
,
"ComSpec"
:
"C:
\\
Windows
\\
system32
\\
cmd.exe"
,
"dp0"
:
"G:
\\
workSpace
\\
amos-station-module-view
\\
node_modules
\\
.bin
\\
"
,
"DriverData"
:
"C:
\\
Windows
\\
System32
\\
Drivers
\\
DriverData"
,
"FPS_BROWSER_APP_PROFILE_STRING"
:
"Internet Explorer"
,
"FPS_BROWSER_USER_PROFILE_STRING"
:
"Default"
,
"GIT_ASKPASS"
:
"c:
\\
Users
\\
DELL
\\
AppData
\\
Local
\\
Programs
\\
Microsoft VS Code
\\
resources
\\
app
\\
extensions
\\
git
\\
dist
\\
askpass.sh"
,
"HOME"
:
"C:
\\
Users
\\
DELL"
,
"HOMEDRIVE"
:
"C:"
,
"HOMEPATH"
:
"
\\
Users
\\
DELL"
,
"INIT_CWD"
:
"G:
\\
workSpace
\\
amos-station-module-view"
,
"JAVA_HOME"
:
"C:
\\
Program Files
\\
Java
\\
jdk1.8.0_201"
,
"LANG"
:
"zh_CN.UTF-8"
,
"LOCALAPPDATA"
:
"C:
\\
Users
\\
DELL
\\
AppData
\\
Local"
,
"LOGONSERVER"
:
"
\\\\
DESKTOP-KKH52JE"
,
"NODE"
:
"F:
\\
install
\\
nodejs
\\
node.exe"
,
"NODE_ENV"
:
"development "
,
"NODE_EXE"
:
"F:
\\
install
\\
nodejs
\\\\
node.exe"
,
"NODE_PATH"
:
"F:
\\
install
\\
nodejs
\\
node_modules"
,
"NPM_CLI_JS"
:
"F:
\\
install
\\
nodejs
\\\\
node_modules
\\
npm
\\
bin
\\
npm-cli.js"
,
"npm_config_access"
:
""
,
"npm_config_allow_same_version"
:
""
,
"npm_config_also"
:
""
,
"npm_config_always_auth"
:
""
,
"npm_config_argv"
:
"{
\"
remain
\"
:[],
\"
cooked
\"
:[
\"
start
\"
],
\"
original
\"
:[
\"
start
\"
]}"
,
"npm_config_audit"
:
"true"
,
"npm_config_audit_level"
:
"low"
,
"npm_config_auth_type"
:
"legacy"
,
"npm_config_before"
:
""
,
"npm_config_bin_links"
:
"true"
,
"npm_config_browser"
:
""
,
"npm_config_ca"
:
""
,
"npm_config_cache"
:
"F:
\\
install
\\
nodejs
\\
node_cache"
,
"npm_config_cache_lock_retries"
:
"10"
,
"npm_config_cache_lock_stale"
:
"60000"
,
"npm_config_cache_lock_wait"
:
"10000"
,
"npm_config_cache_max"
:
"Infinity"
,
"npm_config_cache_min"
:
"10"
,
"npm_config_cafile"
:
""
,
"npm_config_cert"
:
""
,
"npm_config_cidr"
:
""
,
"npm_config_color"
:
"true"
,
"npm_config_commit_hooks"
:
"true"
,
"npm_config_depth"
:
"Infinity"
,
"npm_config_description"
:
"true"
,
"npm_config_dev"
:
""
,
"npm_config_dry_run"
:
""
,
"npm_config_editor"
:
"notepad.exe"
,
"npm_config_engine_strict"
:
""
,
"npm_config_fetch_retries"
:
"2"
,
"npm_config_fetch_retry_factor"
:
"10"
,
"npm_config_fetch_retry_maxtimeout"
:
"60000"
,
"npm_config_fetch_retry_mintimeout"
:
"10000"
,
"npm_config_force"
:
""
,
"npm_config_format_package_lock"
:
"true"
,
"npm_config_fund"
:
"true"
,
"npm_config_git"
:
"git"
,
"npm_config_git_tag_version"
:
"true"
,
"npm_config_global"
:
""
,
"npm_config_globalconfig"
:
"F:
\\
install
\\
nodejs
\\
node_global
\\
etc
\\
npmrc"
,
"npm_config_globalignorefile"
:
"F:
\\
install
\\
nodejs
\\
node_global
\\
etc
\\
npmignore"
,
"npm_config_global_style"
:
""
,
"npm_config_group"
:
""
,
"npm_config_ham_it_up"
:
""
,
"npm_config_heading"
:
"npm"
,
"npm_config_https_proxy"
:
""
,
"npm_config_if_present"
:
""
,
"npm_config_ignore_prepublish"
:
""
,
"npm_config_ignore_scripts"
:
""
,
"npm_config_init_author_email"
:
""
,
"npm_config_init_author_name"
:
""
,
"npm_config_init_author_url"
:
""
,
"npm_config_init_license"
:
"ISC"
,
"npm_config_init_module"
:
"C:
\\
Users
\\
DELL
\\
.npm-init.js"
,
"npm_config_init_version"
:
"1.0.0"
,
"npm_config_json"
:
""
,
"npm_config_key"
:
""
,
"npm_config_legacy_bundling"
:
""
,
"npm_config_link"
:
""
,
"npm_config_local_address"
:
""
,
"npm_config_loglevel"
:
"notice"
,
"npm_config_logs_max"
:
"10"
,
"npm_config_long"
:
""
,
"npm_config_maxsockets"
:
"50"
,
"npm_config_message"
:
"%s"
,
"npm_config_metrics_registry"
:
"http://172.16.11.26:9696/"
,
"npm_config_node_gyp"
:
"F:
\\
install
\\
nodejs
\\
node_modules
\\
npm
\\
node_modules
\\
node-gyp
\\
bin
\\
node-gyp.js"
,
"npm_config_node_options"
:
""
,
"npm_config_node_version"
:
"12.16.1"
,
"npm_config_noproxy"
:
""
,
"npm_config_npm_set_registry_http___registry_npm_taobao_org_"
:
"true"
,
"npm_config_offline"
:
""
,
"npm_config_onload_script"
:
""
,
"npm_config_only"
:
""
,
"npm_config_optional"
:
"true"
,
"npm_config_otp"
:
""
,
"npm_config_package_lock"
:
""
,
"npm_config_package_lock_only"
:
""
,
"npm_config_parseable"
:
""
,
"npm_config_prefer_offline"
:
""
,
"npm_config_prefer_online"
:
""
,
"npm_config_prefix"
:
"F:
\\
install
\\
nodejs
\\
node_global"
,
"npm_config_preid"
:
""
,
"npm_config_production"
:
""
,
"npm_config_progress"
:
"true"
,
"npm_config_proxy"
:
""
,
"npm_config_read_only"
:
""
,
"npm_config_rebuild_bundle"
:
"true"
,
"npm_config_registry"
:
"http://172.16.11.26:9696/"
,
"npm_config_rollback"
:
"true"
,
"npm_config_sass_binary_site"
:
"http://172.16.11.26:8888/node-sass"
,
"npm_config_save"
:
""
,
"npm_config_save_bundle"
:
""
,
"npm_config_save_dev"
:
""
,
"npm_config_save_exact"
:
""
,
"npm_config_save_optional"
:
""
,
"npm_config_save_prefix"
:
"^"
,
"npm_config_save_prod"
:
""
,
"npm_config_scope"
:
""
,
"npm_config_scripts_prepend_node_path"
:
"warn-only"
,
"npm_config_script_shell"
:
""
,
"npm_config_searchexclude"
:
""
,
"npm_config_searchlimit"
:
"20"
,
"npm_config_searchopts"
:
""
,
"npm_config_searchstaleness"
:
"900"
,
"npm_config_send_metrics"
:
""
,
"npm_config_shell"
:
"C:
\\
Windows
\\
system32
\\
cmd.exe"
,
"npm_config_shrinkwrap"
:
"true"
,
"npm_config_sign_git_commit"
:
""
,
"npm_config_sign_git_tag"
:
""
,
"npm_config_sso_poll_frequency"
:
"500"
,
"npm_config_sso_type"
:
"oauth"
,
"npm_config_strict_ssl"
:
"true"
,
"npm_config_tag"
:
"latest"
,
"npm_config_tag_version_prefix"
:
"v"
,
"npm_config_timing"
:
""
,
"npm_config_tmp"
:
"C:
\\
Users
\\
DELL
\\
AppData
\\
Local
\\
Temp"
,
"npm_config_umask"
:
"0000"
,
"npm_config_unicode"
:
""
,
"npm_config_unsafe_perm"
:
"true"
,
"npm_config_update_notifier"
:
"true"
,
"npm_config_usage"
:
""
,
"npm_config_user"
:
""
,
"npm_config_userconfig"
:
"C:
\\
Users
\\
DELL
\\
.npmrc"
,
"npm_config_user_agent"
:
"npm/6.13.4 node/v12.16.1 win32 x64"
,
"npm_config_version"
:
""
,
"npm_config_versions"
:
""
,
"npm_config_viewer"
:
"browser"
,
"npm_execpath"
:
"F:
\\
install
\\
nodejs
\\
node_modules
\\
npm
\\
bin
\\
npm-cli.js"
,
"npm_lifecycle_event"
:
"start"
,
"npm_lifecycle_script"
:
"set NODE_ENV=development && webpack-dev-server"
,
"npm_node_execpath"
:
"F:
\\
install
\\
nodejs
\\
node.exe"
,
"npm_package_author_name"
:
"ilex.h"
,
"npm_package_dependencies_amos_3d"
:
"^2.x"
,
"npm_package_dependencies_amos_designer"
:
"^1.x"
,
"npm_package_dependencies_amos_viz"
:
"^1.x"
,
"npm_package_dependencies_amos_websocket"
:
"^1.0.3"
,
"npm_package_dependencies_ray_hotkeys"
:
"^1.0.0"
,
"npm_package_description"
:
"1.复制amos-station-module-view的mods文件夹到mos-iot-graphmod根目录"
,
"npm_package_devDependencies_amos_build"
:
"^3.x"
,
"npm_package_devDependencies_amos_framework"
:
"^1.x"
,
"npm_package_devDependencies_amos_iot_3dgraph"
:
"^1.0.3"
,
"npm_package_devDependencies_amos_iot_webstudio"
:
"^1.x"
,
"npm_package_devDependencies_amos_processor"
:
"^2.x"
,
"npm_package_devDependencies_amos_security"
:
"^2.x"
,
"npm_package_devDependencies_eslint_config_ray"
:
"^1.0.25"
,
"npm_package_devDependencies_ray_code_split"
:
"^1.0.1"
,
"npm_package_devDependencies_ray_mediaquery"
:
"^1.0.0"
,
"npm_package_devDependencies_ray_progress"
:
"^1.0.0"
,
"npm_package_devDependencies_react"
:
"~16.3.2"
,
"npm_package_devDependencies_react_dom"
:
"~16.3.3"
,
"npm_package_devDependencies_stylelint_config_ray"
:
"^2.0.0"
,
"npm_package_gitHead"
:
"44554099235d7b2e11b5ba26e90826299b8b960b"
,
"npm_package_main"
:
"./lib/index.js"
,
"npm_package_name"
:
"amos-station-module-view"
,
"npm_package_publishConfig_registry"
:
"http://172.16.11.26:9696"
,
"npm_package_readmeFilename"
:
"readme.md"
,
"npm_package_scripts_build"
:
"ray-build react && ray-build stylescss"
,
"npm_package_scripts_clean"
:
"rimraf lib dist released"
,
"npm_package_scripts_lint"
:
"eslint src tests"
,
"npm_package_scripts_lint_fix"
:
"npm run lint -- --fix"
,
"npm_package_scripts_pub"
:
"npm run build && amos-run dllreleased"
,
"npm_package_scripts_start"
:
"set NODE_ENV=development && webpack-dev-server"
,
"npm_package_scripts_stylelint"
:
"stylelint src"
,
"npm_package_scripts_watch"
:
"webpack -w"
,
"npm_package_version"
:
"1.0.0"
,
"NPM_PREFIX_NPM_CLI_JS"
:
"F:
\\
install
\\
nodejs
\\
node_global
\\
node_modules
\\
npm
\\
bin
\\
npm-cli.js"
,
"NUMBER_OF_PROCESSORS"
:
"8"
,
"NVM_HOME"
:
"C:
\\
Users
\\
DELL
\\
AppData
\\
Roaming
\\
nvm"
,
"NVM_SYMLINK"
:
"C:
\\
Program Files
\\
nodejs"
,
"OneDrive"
:
"C:
\\
Users
\\
DELL
\\
OneDrive"
,
"OS"
:
"Windows_NT"
,
"Path"
:
"F:
\\
install
\\
nodejs
\\
node_modules
\\
npm
\\
node_modules
\\
npm-lifecycle
\\
node-gyp-bin;G:
\\
workSpace
\\
amos-station-module-view
\\
node_modules
\\
.bin;C:
\\
Program Files (x86)
\\
Common Files
\\
Oracle
\\
Java
\\
javapath;C:
\\
Windows
\\
system32;C:
\\
Windows;C:
\\
Windows
\\
System32
\\
Wbem;C:
\\
Windows
\\
System32
\\
WindowsPowerShell
\\
v1.0
\\
;C:
\\
Windows
\\
System32
\\
OpenSSH
\\
;C:
\\
Program Files (x86)
\\
NVIDIA Corporation
\\
PhysX
\\
Common;D:
\\
Program Files
\\
Git
\\
cmd;C:
\\
Program Files
\\
TortoiseGit
\\
bin;C:
\\
Users
\\
DELL
\\
AppData
\\
Roaming
\\
nvm;C:
\\
Program Files
\\
NVIDIA Corporation
\\
NVIDIA NvDLISR;C:
\\
Program Files
\\
TortoiseSVN
\\
bin;C:
\\
ProgramData
\\
chocolatey
\\
bin;F:
\\
install
\\
nodejs
\\
node_global;F:
\\
install
\\
Python27;C:
\\
Program Files
\\
Java
\\
jdk1.8.0_201
\\
bin;F:
\\
install
\\
nodejs
\\
;C:
\\
Users
\\
DELL
\\
AppData
\\
Local
\\
Microsoft
\\
WindowsApps;
\"
C:
\\
Program Files
\\
Java
\\
jdk1.8.0_201
\\
bin;C:
\\
Program Files
\\
Java
\\
jdk1.8.0_201
\\
jre
\\
bin
\"
;C:
\\
Users
\\
DELL
\\
AppData
\\
Roaming
\\
nvm;C:
\\
Program Files
\\
nodejs;D:
\\
develop
\\
nodejs
\\
node_global;C:
\\
Users
\\
DELL
\\
AppData
\\
Roaming
\\
npm;C:
\\
Users
\\
DELL
\\
AppData
\\
Local
\\
Programs
\\
Microsoft VS Code
\\
bin"
,
"PATHEXT"
:
".COM;.EXE;.BAT;.CMD;.VBS;.VBE;.JSE;.WSF;.WSH;.MSC;.CPL"
,
"PROCESSOR_ARCHITECTURE"
:
"AMD64"
,
"PROCESSOR_IDENTIFIER"
:
"Intel64 Family 6 Model 158 Stepping 13, GenuineIntel"
,
"PROCESSOR_LEVEL"
:
"6"
,
"PROCESSOR_REVISION"
:
"9e0d"
,
"ProgramData"
:
"C:
\\
ProgramData"
,
"ProgramFiles"
:
"C:
\\
Program Files"
,
"ProgramFiles(x86)"
:
"C:
\\
Program Files (x86)"
,
"ProgramW6432"
:
"C:
\\
Program Files"
,
"PROMPT"
:
"$P$G"
,
"PSModulePath"
:
"C:
\\
Users
\\
DELL
\\
Documents
\\
WindowsPowerShell
\\
Modules;C:
\\
Program Files
\\
WindowsPowerShell
\\
Modules;C:
\\
Windows
\\
system32
\\
WindowsPowerShell
\\
v1.0
\\
Modules"
,
"PUBLIC"
:
"C:
\\
Users
\\
Public"
,
"SESSIONNAME"
:
"Console"
,
"SystemDrive"
:
"C:"
,
"SystemRoot"
:
"C:
\\
Windows"
,
"TEMP"
:
"C:
\\
Users
\\
DELL
\\
AppData
\\
Local
\\
Temp"
,
"TERM_PROGRAM"
:
"vscode"
,
"TERM_PROGRAM_VERSION"
:
"1.45.1"
,
"TMP"
:
"C:
\\
Users
\\
DELL
\\
AppData
\\
Local
\\
Temp"
,
"USERDOMAIN"
:
"DESKTOP-KKH52JE"
,
"USERDOMAIN_ROAMINGPROFILE"
:
"DESKTOP-KKH52JE"
,
"USERNAME"
:
"DELL"
,
"USERPROFILE"
:
"C:
\\
Users
\\
DELL"
,
"VSCODE_GIT_ASKPASS_MAIN"
:
"c:
\\
Users
\\
DELL
\\
AppData
\\
Local
\\
Programs
\\
Microsoft VS Code
\\
resources
\\
app
\\
extensions
\\
git
\\
dist
\\
askpass-main.js"
,
"VSCODE_GIT_ASKPASS_NODE"
:
"C:
\\
Users
\\
DELL
\\
AppData
\\
Local
\\
Programs
\\
Microsoft VS Code
\\
Code.exe"
,
"VSCODE_GIT_IPC_HANDLE"
:
"
\\\\
.
\\
pipe
\\
vscode-git-11879c72ba-sock"
,
"windir"
:
"C:
\\
Windows"
,
"_prog"
:
"node"
},
"sharedObjects"
:
[
"F:
\\
install
\\
nodejs
\\
node.exe"
,
"C:
\\
Windows
\\
SYSTEM32
\\
ntdll.dll"
,
"C:
\\
Windows
\\
System32
\\
KERNEL32.DLL"
,
"C:
\\
Windows
\\
System32
\\
KERNELBASE.dll"
,
"C:
\\
Windows
\\
System32
\\
WS2_32.dll"
,
"C:
\\
Windows
\\
System32
\\
RPCRT4.dll"
,
"C:
\\
Windows
\\
System32
\\
PSAPI.DLL"
,
"C:
\\
Windows
\\
System32
\\
ADVAPI32.dll"
,
"C:
\\
Windows
\\
System32
\\
msvcrt.dll"
,
"C:
\\
Windows
\\
System32
\\
sechost.dll"
,
"C:
\\
Windows
\\
System32
\\
USER32.dll"
,
"C:
\\
Windows
\\
System32
\\
win32u.dll"
,
"C:
\\
Windows
\\
SYSTEM32
\\
dbghelp.dll"
,
"C:
\\
Windows
\\
System32
\\
GDI32.dll"
,
"C:
\\
Windows
\\
System32
\\
ucrtbase.dll"
,
"C:
\\
Windows
\\
System32
\\
gdi32full.dll"
,
"C:
\\
Windows
\\
System32
\\
msvcp_win.dll"
,
"C:
\\
Windows
\\
System32
\\
CRYPT32.dll"
,
"C:
\\
Windows
\\
System32
\\
MSASN1.dll"
,
"C:
\\
Windows
\\
System32
\\
bcrypt.dll"
,
"C:
\\
Windows
\\
SYSTEM32
\\
IPHLPAPI.DLL"
,
"C:
\\
Windows
\\
SYSTEM32
\\
USERENV.dll"
,
"C:
\\
Windows
\\
System32
\\
profapi.dll"
,
"C:
\\
Windows
\\
SYSTEM32
\\
WINMM.dll"
,
"C:
\\
Windows
\\
SYSTEM32
\\
winmmbase.dll"
,
"C:
\\
Windows
\\
System32
\\
cfgmgr32.dll"
,
"C:
\\
Windows
\\
System32
\\
bcryptPrimitives.dll"
,
"C:
\\
Windows
\\
System32
\\
IMM32.DLL"
,
"C:
\\
Windows
\\
System32
\\
powrprof.dll"
,
"C:
\\
Windows
\\
System32
\\
UMPDC.dll"
,
"C:
\\
Windows
\\
SYSTEM32
\\
CRYPTBASE.DLL"
,
"C:
\\
Windows
\\
system32
\\
uxtheme.dll"
,
"C:
\\
Windows
\\
System32
\\
combase.dll"
,
"C:
\\
Windows
\\
system32
\\
mswsock.dll"
,
"C:
\\
Windows
\\
System32
\\
kernel.appcore.dll"
,
"C:
\\
Windows
\\
System32
\\
NSI.dll"
,
"C:
\\
Windows
\\
SYSTEM32
\\
dhcpcsvc6.DLL"
,
"C:
\\
Windows
\\
SYSTEM32
\\
dhcpcsvc.DLL"
,
"C:
\\
Windows
\\
SYSTEM32
\\
DNSAPI.dll"
,
"
\\\\
?
\\
G:
\\
workSpace
\\
amos-station-module-view
\\
node_modules
\\
node-sass
\\
vendor
\\
win32-x64-72
\\
binding.node"
,
"C:
\\
Windows
\\
system32
\\
napinsp.dll"
,
"C:
\\
Windows
\\
system32
\\
pnrpnsp.dll"
,
"C:
\\
Windows
\\
System32
\\
winrnr.dll"
,
"C:
\\
Windows
\\
system32
\\
NLAapi.dll"
,
"C:
\\
Windows
\\
system32
\\
wshbth.dll"
]
}
\ No newline at end of file
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment