npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

create-react-app-ts

v2.1.0

Published

Scalable starter boilerplate for React applications

Downloads

23

Readme

GitHub issues GitHub last commit Build Status Analytics

Create Awesome React Application

Opinionated React starter template using TypeScript, Redux, React Router, Redux Saga, SCSS, PostCSS and more, offering PWA and offline capabilities and many more.

Dependencies

In order to use this setup you need to have installed the following dependencies:

  1. Node - min v8.15.0
  2. NPM - min v5.6.0 or
  3. Yarn - min v1.3.2
  4. Bash terminal (Default on OSX/Linux, GitBash or similar on Windows)

One line zero config installation

npx create-react-app-ts && yarn && yarn start

Just a quick note: You should manually create a .gitignore file if you plan on keeping your project in Git.

Download

You can download this setup directly and extract it.

Then navigate to the react-template-ts folder and proceed with the rest of the instructions.

Install

yarn

# or

npm i

Develop

yarn start

# or

npm start

Build

yarn build

# or

npm run build

Lint

yarn lint

# or

npm run lint

Test

yarn test

# or

npm run test

Details

  1. Folder structure:

    📦 project
    ┣ 📂 assets - all fonts, images, videos, translation files, etc
    ┣ ┣ 📂 locale - all translations
    ┣ ┣ 📂 styles - all shared stylesheets
    ┃ ┃ ┗ 📜 app.scss - Application's global SCSS entry point
    ┃ ┃ ┗ 📜 mixins.scss - Application's SCSS mixins
    ┃ ┃ ┗ 📜 functions.scss - Application's SCSS functions
    ┃ ┃ ┗ 📜 settings.scss - Application's SCSS settings (variables, etc)
    ┣ 📂 components - stateless components
    ┣ 📂 containers - statefull components. Each container can export more than one component. An example folder structure is included in (`src/containers/.boilerplate`)
    ┣ 📂 i18n - configuration settings for i18n (internationalization)
    ┣ 📂 store - The application Redux store
    ┣ ┣ 📂 branches - all store branches
    ┣ ┣	┣ ┣ 📂 $BRANCH - A branch in the Redux store
    ┃ ┃ ┃ ┗ 📜 enums.ts - Each branch has its own enums
    ┃ ┃ ┃ ┗ 📜 interfaces.ts - Each branch has its own interfaces
    ┃ ┃ ┃ ┗ 📜 reducer.ts - The branch reducer
    ┃ ┃ ┃ ┗ 📜 selectors.ts - The branch selectors (hooks)
    ┃ ┃ ┃ ┗ 📜 sagas.ts - The branch sagas
    ┃ ┗ 📜 enums.ts - Store's enums
    ┃ ┗ 📜 index.ts - Application's main store
    ┃ ┗ 📜 interfaces.ts - Store's interfaces
    ┃ ┗ 📜 root-reducer.ts - Application's root reducer
    ┃ ┗ 📜 sagas.ts - Application's sagas
    ┣ 📂 utilities - helpers and utility functions
    ┗ 📜 app.tsx - Application's main component
    ┗ 📜 custom.d.ts - Custom type definitions
    ┗ 📜 index.html - Application's HTML file
    ┗ 📜 index.tsx - The main entry point
    ┗ 📜 loadables.tsx - Code split and lazy loaded components
  2. Latest EcmaScript support

    • Usage of the latest features in EcmaScript
    • Using TypeScript to transpile to ES5
    • Minification of the bundled file
    • Source maps
  3. Aliases: Checkout the aliases property in the vite.config.ts and tsconfig.json files.

  4. SCSS usage.

  5. Lint your files: ESLint (with TypeScript ESLint installed and configured) and Stylelint included

  6. Tests using Jest and React testing library. The Test environment has been configured so you don't have to

  7. PWA ready - Install as a native app on Android and iOS

  8. Code splitting and lazy loading

  9. i18n included:

    1. add your locales in /src/i18n/locales
    2. add your po files which are based on the translations.pot file located in /src/assets/locale
    3. run yarn locale to generate ${locale}.json file from your ${locale}.po file.
    4. update your UI to reflect the newly added locale
  10. Prerendering - All pages are prerendered based on defined routes. This is included in the build step and needs no additional configuration.

Supported Browsers

This setup uses Browserslist to target browsers.

The default list of supported browsers is listed in the package.json file:

{
	"browserslist": ["> 1%", "last 2 versions"]
}

This means that supported browsers vary based on current usage data and current browser versions.

In general, this setup supports the two most recent versions of all browsers.

Bonus

The start template contains a ready-to-use auth flow with Login, Logout, Sign up and Forgotten password forms with validation included. The auth flow includes also route guarding and redirects based on auth status. Please take a look at the /src/containers/auth folder for more details.

The starting files also include ready-to-use layout components such as Header, Footer, Wrapper, Button, Icon and form Fields.

LICENSE

MIT