
Security News
Axios Supply Chain Attack Reaches OpenAI macOS Signing Pipeline, Forces Certificate Rotation
OpenAI rotated macOS signing certificates after a malicious Axios package reached its CI pipeline in a broader software supply chain attack.
ncloud-sdk
Advanced tools
설치는 npm 또는 yarn 을 이용해서 아래의 명령어로 설치할 수 있습니다.
npm install ncloud-sdk --save
ncloud_access_key_id = C9zxQyBQVqcRNQmcAXKn
ncloud_secret_access_key = NDgSdssXg4RiMMN1f5dqIe775GJXzSe8hWpd2X3g
var ncloud = require('ncloud-sdk');
var Server = require('ncloud-server');
var n = new ncloud();
var client = new Server.ApiClient(n.keys());
var instance = new Server.V2Api(client);
instance.getServerInstanceList({}, function(err, data, response) {
if (err) {
console.error(err);
} else {
console.log('API called successfully. Returned data: ', data);
}
});
ncloud.init 를 호출해서 인증키를 받아야 합니다. Server Role 인증키 적용 방법은 Example 을 참고하시기 바랍니다.var ncloud = require('ncloud-sdk');
var Server = require('ncloud-server');
var n = new ncloud();
n.init(function (err, creds) {
if (err) {
throw err;
}
var client = new Server.ApiClient();
client.credentials = creds;
var instance = new Server.V2Api(client);
instance.getServerInstanceList({}, function(err, data, response) {
if (err) {
console.error(err);
} else {
console.log('API called successfully. Returned data: ', data);
}
});
});
ncloud.init를 사용하면 아래 순서로 인증키를 찾습니다:
| Services | Documentation | Install Command |
|---|---|---|
| Server | Server | npm install ncloud-server |
| Loadbalancer | Loadbalancer | npm install ncloud-loadbalancer |
| Autoscaling | Autoscaling | npm install ncloud-autoscaling |
| Monitoring | Monitoring | npm install ncloud-monitoring |
| CDN | CDN | npm install ncloud-cdn |
| CloudDB | CloudDB | npm install ncloud-clouddb |
| Server(VPC) | Server(VPC) | npm install ncloud-vserver |
| VPC | VPC | npm install ncloud-vpc |
| Nas(VPC) | Nas(VPC) | npm install ncloud-vnas |
Copyright (c) 2018 NAVER BUSINESS PLATFORM Corp.
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in
all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE.
FAQs
Naver Cloud Platform Client Library for node
The npm package ncloud-sdk receives a total of 18 weekly downloads. As such, ncloud-sdk popularity was classified as not popular.
We found that ncloud-sdk demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 2 open source maintainers collaborating on the project.
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Security News
OpenAI rotated macOS signing certificates after a malicious Axios package reached its CI pipeline in a broader software supply chain attack.

Security News
Open source is under attack because of how much value it creates. It has been the foundation of every major software innovation for the last three decades. This is not the time to walk away from it.

Security News
Socket CEO Feross Aboukhadijeh breaks down how North Korea hijacked Axios and what it means for the future of software supply chain security.