
Security News
Meet Socket at Black Hat and DEF CON 2025 in Las Vegas
Meet Socket at Black Hat & DEF CON 2025 for 1:1s, insider security talks at Allegiant Stadium, and a private dinner with top minds in software supply chain security.
create-kernode
Advanced tools
npm init kernode
routes/web.ts
routes/api.ts
api
import { ApiRouter as Router } from '@kernode/core'
import ApiController from 'Controller/Http/ApiController'
Router.get('/', ApiController.index)
import { Router } from '@kernode/core'
import WebController from 'Controller/Http/WebController'
Router.get('/', WebController.index)
import { SocketListener } from '@kernode/core'
import WebSocketController from 'Controller/Ws/WebSocketController'
SocketListener.on('message', WebSocketController.onMessage)
import { EventListener } from '@kernode/core'
import EventController from 'Controller/Event/EventController'
EventListener.on('message', EventController.onMessage)
import { AppEventEmitter } from '@kernode/core'
AppEventEmitter.emit('message', { vehicle: 'car' })
import { Model } from '@kernode/core'
class User extends Model {
tableName: string = 'users'
id: string
name: string
email: string
password: string
created_at: string
updated_at: string
}
export default new User()
let users = await User.query().where('id', 1)
Hash.make('plainPasswordText')
(string)
Hash.verify('plainPasswordText', hashedString)
(bool)
Auth.token(userObjectPayload)
(jwt token)
Auth.verify(userObjectPayload)
(User Object Payload | false)
Storage.store(file)
path(string)
Storage.getStream(path, res)
StreamObject
npm run build && npm run serve
FAQs
Create new kernode template
The npm package create-kernode receives a total of 1 weekly downloads. As such, create-kernode popularity was classified as not popular.
We found that create-kernode demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer 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
Meet Socket at Black Hat & DEF CON 2025 for 1:1s, insider security talks at Allegiant Stadium, and a private dinner with top minds in software supply chain security.
Security News
CAI is a new open source AI framework that automates penetration testing tasks like scanning and exploitation up to 3,600× faster than humans.
Security News
Deno 2.4 brings back bundling, improves dependency updates and telemetry, and makes the runtime more practical for real-world JavaScript projects.