Files
DedicatedServerCourse/Plugins/GameLiftServerSDK/ThirdParty/rapidjson/doc/npm.md
2026-02-24 22:39:26 -05:00

32 lines
363 B
Markdown

## NPM
# package.json {#package}
~~~~~~~~~~js
{
...
"dependencies": {
...
"rapidjson": "git@github.com:miloyip/rapidjson.git"
},
...
"gypfile": true
}
~~~~~~~~~~
# binding.gyp {#binding}
~~~~~~~~~~js
{
...
'targets': [
{
...
'include_dirs': [
'<!(node -e \'require("rapidjson")\')'
]
}
]
}
~~~~~~~~~~