Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

@energyweb/ekc

Package Overview
Dependencies
Maintainers
8
Versions
16
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@energyweb/ekc

Enterprise Key Connect

  • 0.6.7
  • latest
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
79
increased by27.42%
Maintainers
8
Weekly downloads
 
Created
Source

Enterprise Key Connect SDK

Seamless integration of existing cloud key infrastructure into web3 projects.

Getting Started

note: not published yet!

npm install @energyweb/ekc

API

TODO

Development

# provide env variables
cp .env.template .env

# Build the project
rushx build

#Test the project
rushx test

# Run the linter
rushx lint

Debugging in VSCode and Chrome

# first install 'Debugger for Chrome' extension for Visual Studio Code

# run webpack in watch mode and start dev server
rushx start

# in ekc package root directory create .vscode directory and inside that create launch.json file and add following config into into it
{
	"version": "0.2.0",
	"configurations": [
		{
			"type": "chrome",
			"request": "launch",
			"name": "Launch EKC Debug",
      "internalConsoleOptions": "openOnSessionStart",
			"url": "http://localhost:8080/",
			"webRoot": "${workspaceFolder}",
			"sourceMaps": true,
			"sourceMapPathOverrides": {
				"webpack://@energyweb/ekc/./*": "${webRoot}/*",
				"webpack://@energyweb/ekc/../../*": "${webRoot}/../../*"
			}
		}
	]
}

## if you don't have chrome, you can change the executable path to e.g. chromium
{
	"configurations": [
		{
			# put this in the "Launch" configuration above
			"runtimeExecutable": "/usr/local/bin/chromium"
		}
	]
}

# press F5 to start debugging session

FAQs

Package last updated on 01 Sep 2022

Did you know?

Socket

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.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc