Security News
Research
Data Theft Repackaged: A Case Study in Malicious Wrapper Packages on npm
The Socket Research Team breaks down a malicious wrapper package that uses obfuscation to harvest credentials and exfiltrate sensitive data.
@onlinx/core
Advanced tools
A fast and simple HTTP framework written in typescript
This project was bootstrapped with TSDX.
Using with Typescript is as simple as running npm install @onlinx/core
and importing it
Here's the hello world example in Typescript
import { Controller, Router, Server } from 'onlinx';
const router = new Router();
router.route('/', {
get() {
return 'hello world'
}
})
const controller = new Controller(router);
const app = new Server(controller);
app.mount(3000, () => console.log('running...'));
The server will be running on port 3000
Usage with node is coming soon. We need to configure some config options to get it to work with both Typescript and Node
The context
object (often aliased as ctx
) is passed to every handler callback
It contains information about the request, and helpers for setting information on the response
Here are all of the various methods/properties and their uses
headers
The headers
property has two sub-methods, headers.get
and headers.set
.
headers.get
: Retrieves a header sent by the client, takes a string arguementheaders.set
: Sets a header for the responsestatus
The status
method sets the status to send.
Note: this does not send the status code, but sets it when the response is sent. This means that middlewares can safely set the status and still pass to the next handler
How do middlewares work
You can return true
to pass to the next layer and false
to not continue
Is there a body parser?
We're going to make one as a seperate package. It's in the works for now.
Below is a list of commands you will probably find useful.
npm start
or yarn start
Runs the project in development/watch mode. Your project will be rebuilt upon changes. TSDX has a special logger for you convenience. Error messages are pretty printed and formatted for compatibility VS Code's Problems tab.
Your library will be rebuilt if you make edits.
npm run build
or yarn build
Bundles the package to the dist
folder.
The package is optimized and bundled with Rollup into multiple formats (CommonJS, UMD, and ES Module).
npm test
or yarn test
Runs the test watcher (Jest) in an interactive mode. By default, runs tests related to files changed since the last commit.
import { Controller, Router, Server } from './node_modules/onlinx';
const router = new Router();
router.route('/', {
get() {
return 'hello world'
}
})
const controller = new Controller(router);
const app = new Server(controller);
app.mount(3000, () => console.log('running...'));
import { Controller, Router, Server, Context } from './node_modules/onlinx';
const router = new Router();
const cors = async (ctx: Context) => {
ctx.headers.set('Access-Control-Allow-Origin', '*')
ctx.headers.set('Access-Control-Allow-Headers', '*')
ctx.headers.set('Access-Control-Allow-Methods', '*')
return true
}
router.route('/', {
get: [cors, async () => {
return 'hello world'
}]
})
const controller = new Controller(router);
const app = new Server(controller);
app.mount(3000, () => console.log('running...'));
FAQs
A fast and simple HTTP framework written in typescript
We found that @onlinx/core 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
Research
The Socket Research Team breaks down a malicious wrapper package that uses obfuscation to harvest credentials and exfiltrate sensitive data.
Research
Security News
Attackers used a malicious npm package typosquatting a popular ESLint plugin to steal sensitive data, execute commands, and exploit developer systems.
Security News
The Ultralytics' PyPI Package was compromised four times in one weekend through GitHub Actions cache poisoning and failure to rotate previously compromised API tokens.