This repository has been archived by the owner on Dec 16, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
content.js
37 lines (37 loc) · 2.32 KB
/
content.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
module.exports = {
title: 'Foal TS',
subtitle: 'A Node.js and TypeScript framework, all-inclusive.',
description: 'FoalTS is a complete Node.js and TypeScript framework with everything you need to create server-side applications. Its architecture keeps things simple and intuitive.',
features: [
{
name: 'Production-ready',
icon: 'ship',
description: 'FoalTS provides an advanced configuration system to smoothly switch between your environments. How you specify the configuration may change between deploys (env variables, json files, etc). But your codebase stays the same.'
},
{
name: 'TypeScript',
icon: 'code',
description: 'TypeScript brings you optional static type-checking along with the latest ECMAScript features. Writing FoalTS with TypeScript has been and will always be fundamental. Code is more elegant and concise. Most of the silly mistakes are caught at compilation. And autocompletion is well-handled and the API is better documented.'
},
{
name: 'Dev tools',
icon: 'wrench',
description: 'Every project needs dev tools. But setting up and maintaining such an environment in Node.Js is often hard or time consuming. FoalTS focuses on helping the developer to code. Generators, watchers, the compiler, linter, bundler and test framework are all provided in FoalTS. No more set up, get started right away.',
},
{
name: 'Basic components',
icon: 'cubes',
description: 'Some patterns always come back while developing a web app. Set up a REST API, talk to the database or manage authentication shouldn\'t be a hard task. FoalTS lets you focus on the business logic, not on re-inventing the wheel.'
},
{
name: 'Architecture',
icon: 'home',
description: 'FoalTS provides a robust architecture for creating large web apps. Divided into controllers, services and hooks, your code is well organized. FoalTS enforces the separation of concerns, improves testability and makes your code more readable.',
},
{
name: 'Security',
icon: 'shield',
description: 'Security is everyone\'s business. To help you ship secure apps FoalTS provides some common tools (csrf, xss protections) to take care of it. Moreover all default configurations are set to prevent security failures (cookies, headers, etc).',
},
]
}