
Security News
Open Source Maintainers Feeling the Weight of the EU’s Cyber Resilience Act
The EU Cyber Resilience Act is prompting compliance requests that open source maintainers may not be obligated or equipped to handle.
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
The EU Cyber Resilience Act is prompting compliance requests that open source maintainers may not be obligated or equipped to handle.
Security News
Crates.io adds Trusted Publishing support, enabling secure GitHub Actions-based crate releases without long-lived API tokens.
Research
/Security News
Undocumented protestware found in 28 npm packages disrupts UI for Russian-language users visiting Russian and Belarusian domains.