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

react-snippets-basic

v0.5.3

Published

Code snippets for Reactjs development in ES6 syntax in JS and TS

Downloads

18

Readme

Reactjs

VS Code Reactjs snippets


Version Installs Ratings

This extension contains code snippets for ReactJS in JavaScript and TypeScript. It borrows heavily from this extension by xabikos.

Installation

In order to install an extension you need to launch the Command Palette (Ctrl + Shift + P or Cmd + Shift + P) and type Extensions. There you have either the option to show the already installed snippets or install new ones.

Supported languages (file extensions)

  • JavaScript React (.jsx)
  • TypeScript React (.tsx)

Snippets

Below is a list of all available snippets organised by JSX, TSX, and some that work in both and the triggers of each one. The means the TAB key.

Both .jsx and .tsx

| Trigger | Content | | --------: | ---------------------------------------------------------------- | | rch→ | Start custom hook | | rimpa→ | Absolute import (import El from '@/El) | | rimpr→ | Relative import (import El from './El) | | cna→ | Classnames as array | | rus→ | React.useState hook | | rue→ | React.useEffect hook | | rur→ | React.useRef hook | | ruca→ | React.useCallback hook | | rum→ | React.useMemo hook | | ruco→ | React.useContext hook | | rmap→ | .map in markup | | danger→ | Dangerously Set Inner HTML prop |

The output of these change based on the filetype (.jsx vs .tsx)

| Trigger | Content | | -------: | ---------------------------------------------------------------- | | rscp | Stateless component | | rscpc | Stateless component with className prop |

.tsx

| Trigger | Content | | -------: | ---------------------------------------------------------------- | | rtf→ | function prop type | | rtb→ | boolean prop type | | rts→ | string prop type | | rtn→ | number prop type | | rtch→ | children prop type | | rtcn→ | className prop type |

.jsx

| Trigger | Content | | -------: | ---------------------------------------------------------------- | | ptdf→ | Start default prop types |

The following table lists all the snippets that can be used for prop types. Every snippet regarding prop types begins with pt so it's easy to group it all together and explore all the available options. On top of that each prop type snippets has one equivalent when we need to declare that this property is also required.

For example pta creates the PropTypes.array and ptar creates the PropTypes.array.isRequired

| Trigger | Content | | -------: | ------- | | pta→ | PropTypes.array, | | ptar→ | PropTypes.array.isRequired, | | ptb→ | PropTypes.bool, | | ptbr→ | PropTypes.bool.isRequired, | | ptf→ | PropTypes.func, | | ptfr→ | PropTypes.func.isRequired, | | ptn→ | PropTypes.number, | | ptnr→ | PropTypes.number.isRequired, | | pto→ | PropTypes.object, | | ptor→ | PropTypes.object.isRequired, | | pts→ | PropTypes.string, | | ptsr→ | PropTypes.string.isRequired, | | ptsm→ | PropTypes.symbol, | | ptsmr→ | PropTypes.symbol.isRequired, | | ptan→ | PropTypes.any, | | ptanr→ | PropTypes.any.isRequired, | | ptnd→ | PropTypes.node, | | ptndr→ | PropTypes.node.isRequired, | | ptel→ | PropTypes.element, | | ptelr→ | PropTypes.element.isRequired, | | pti→ | PropTypes.instanceOf(ClassName), | | ptir→ | PropTypes.instanceOf(ClassName).isRequired, | | pte→ | PropTypes.oneOf(['News', 'Photos']), | | pter→ | PropTypes.oneOf(['News', 'Photos']).isRequired, | | ptet→ | PropTypes.oneOfType([PropTypes.string, PropTypes.number]), | | ptetr→ | PropTypes.oneOfType([PropTypes.string, PropTypes.number]).isRequired, | | ptao→ | PropTypes.arrayOf(PropTypes.number), | | ptaor→ | PropTypes.arrayOf(PropTypes.number).isRequired, | | ptoo→ | PropTypes.objectOf(PropTypes.number), | | ptoor→ | PropTypes.objectOf(PropTypes.number).isRequired, | | ptoos→ | PropTypes.objectOf(PropTypes.shape()), | | ptoosr→| PropTypes.objectOf(PropTypes.shape()).isRequired, | | ptsh→ | PropTypes.shape({color: PropTypes.string, fontSize: PropTypes.number}), | | ptshr→ | PropTypes.shape({color: PropTypes.string, fontSize: PropTypes.number}).isRequired, |