Socket
Socket
Sign inDemoInstall

fullts

Package Overview
Dependencies
44
Maintainers
1
Versions
31
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

fullts

Full stack framework in TypeScript, based on TSRPC.


Version published
Maintainers
1
0

Weekly downloads

Readme

Source

FullTS    557045673

EN / 中文

Full-stack framework in TypeScript, based on TSRPC and React.

Still under developing, feel free to log a issue.

Features

Quick development

Extremly efficient in development, everything in TypeScript. Share code between frontend and backend, remote function call just like local

High performance

Delay load, pack and chunk, tested online over 2 years

Easy to learn

Get best practise of project instantly, without learning many tools (etc. webpack, react-router...)

Usage

import * as React from 'react';
import {FulltsApp} from 'fullts';

new FulltsApp({
    serverUrl: '',
    routes: [
        { path: '/', component: () => import('./views/HomeView') },
        { path: '/posts', component: () => import('./views/ArticleListView') },
        { path: '/post/:id', component: () => import('./views/SingleArticleView') },
        { path: '*', component: () => import('./views/Page404') }   //404 Page
    ]
}).renderTo(document.getElementById('app-root')!)

Keywords

FAQs

Last updated on 03 Sep 2018

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