Socket
Socket
Sign inDemoInstall

@energyweb/ekc

Package Overview
Dependencies
51
Maintainers
8
Versions
16
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    @energyweb/ekc

Enterprise Key Connect


Version published
Weekly downloads
116
increased by63.38%
Maintainers
8
Created
Weekly downloads
 

Readme

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

Last updated on 01 Sep 2022

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.

Install

Related posts

SocketSocket SOC 2 Logo

Product

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

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc