![Oracle Drags Its Feet in the JavaScript Trademark Dispute](https://cdn.sanity.io/images/cgdhsj6q/production/919c3b22c24f93884c548d60cbb338e819ff2435-1024x1024.webp?w=400&fit=max&auto=format)
Security News
Oracle Drags Its Feet in the JavaScript Trademark Dispute
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
simple-boot-http-ssr
Advanced tools
{
"scripts": {
"watch": "nodemon -e ts -w ./src -w ../../src --exec 'ts-node --project tsconfig-ssr.json -r tsconfig-paths/register src/server.ts'",
"watch:test": "nodemon --watch 'src/*.ts' --ignore 'src/**/*.spec.ts' --exec 'echo 11'",
"start": "ts-node --project tsconfig-ssr.json -r tsconfig-paths/register src/server.ts",
"build": "tsc src/server.ts",
"build:server": "parcel build src/server.ts --target node",
"build:tt": "rm -rf build && parcel build src/index.ts --out-dir build --no-source-maps",
"build:parcel": "rm -rf ./public && parcel build src/index.html --out-dir ./public",
"watch:parcel": "rm -rf ./public && parcel watch src/index.html --out-dir ./public",
"start:parcel": "rm -rf ./public && parcel --port 3000 src/index.html ./public",
"dev": "ts-node-dev --respawn --project tsconfig-ssr.json -r tsconfig-paths/register src/index.ts",
"build:prod": "cross-env NODE_ENV=production parcel build src/index.html --public-url .",
"test": "jest --detectOpenHandles --forceExit"
}
}
import {SimpleBootHttpSsr} from 'simple-boot-http-ssr/SimpleBootHttpSsr';
import {HttpServerOption} from 'simple-boot-http-ssr/option/HttpServerOption';
import path from 'path';
import {frontConfig} from './frontConfig';
import {ServerRouter} from './app-server/ServerRouter';
const httpServerOption = new HttpServerOption();
httpServerOption.publicPath = path.join(__dirname, '..', 'public');
new SimpleBootHttpSsr(ServerRouter, frontConfig, httpServerOption).run();
{
"extends": "./tsconfig.json",
"compilerOptions": {
"paths": {
"@fetch": ["../../src/fetch/server"]
}
}
}
import {SimpleBootFront} from 'simple-boot-front/SimpleBootFront';
import {AppRouter} from './app/AppRouter';
import {frontConfig} from './frontConfig';
const simpleApplication = new SimpleBootFront(AppRouter, frontConfig);
simpleApplication.run();
{
"paths": {
"@fetch": ["../../src/fetch/front"]
}
}
@Sim()
export class Index extends FrontModule {
constructor() {
super({name: __dirname, template: 'fetch://./index.html', styleImports: ['h1{color:red}'], fetcher: ssrFetch});
}
public goServer() {
console.log('goServer')
ssrFetch.json('/server', {name: 'visualkhh 빵꾸똥꾸'})
}
}
FAQs
front end SPA frameworks SSR
The npm package simple-boot-http-ssr receives a total of 0 weekly downloads. As such, simple-boot-http-ssr popularity was classified as not popular.
We found that simple-boot-http-ssr 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
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
Security News
The Linux Foundation is warning open source developers that compliance with global sanctions is mandatory, highlighting legal risks and restrictions on contributions.
Security News
Maven Central now validates Sigstore signatures, making it easier for developers to verify the provenance of Java packages.