Gathering detailed insights and metrics for @startupjs/babel-plugin-rn-stylename-inline
Gathering detailed insights and metrics for @startupjs/babel-plugin-rn-stylename-inline
Gathering detailed insights and metrics for @startupjs/babel-plugin-rn-stylename-inline
Gathering detailed insights and metrics for @startupjs/babel-plugin-rn-stylename-inline
⚡ Universal React Native + Web framework with isomorphic collaborative DB and observables
npm install @startupjs/babel-plugin-rn-stylename-inline
Typescript
Module System
Node Version
NPM Version
v0.21.1 (April 23, 2020)
Updated on Apr 23, 2020
v0.21.0 (April 21, 2020)
Updated on Apr 22, 2020
v0.20.0 (April 20, 2020)
Updated on Apr 22, 2020
v0.19.3 (April 18, 2020)
Updated on Apr 22, 2020
v0.19.2 (April 18, 2020)
Updated on Apr 22, 2020
v0.19.1 (April 17, 2020)
Updated on Apr 17, 2020
JavaScript (58.86%)
MDX (32.68%)
Shell (3.42%)
Stylus (2.92%)
TypeScript (1.01%)
Java (0.3%)
Objective-C (0.3%)
Dockerfile (0.21%)
CSS (0.15%)
HTML (0.07%)
Ruby (0.04%)
Starlark (0.03%)
Total Downloads
0
Last Day
0
Last Week
0
Last Month
0
Last Year
0
107 Stars
4,202 Commits
48 Forks
10 Watchers
93 Branches
59 Contributors
Updated on May 29, 2025
Latest Version
0.55.11
Package Id
@startupjs/babel-plugin-rn-stylename-inline@0.55.11
Unpacked Size
7.30 kB
Size
2.79 kB
File Count
8
NPM Version
lerna/3.22.1/node@v21.2.0+arm64 (darwin)
Node Version
21.2.0
Published on
Dec 22, 2023
Cumulative downloads
Total Downloads
Last Day
0%
NaN
Compared to previous day
Last Week
0%
NaN
Compared to previous week
Last Month
0%
NaN
Compared to previous month
Last Year
0%
NaN
Compared to previous year
Adds support for in-JS template strings css\
`and
styl```
for CSS styles for react-native.
Must be used together with @startupjs/babel-plugin-rn-stylename
library.
platform
-- what platform the compilation is on. For example, web
or ios
or android
.
1import React from 'react' 2import { View } from 'react-native' 3import { css } from 'startupjs' 4 5export default function Card () { 6 return <View styleName='card active'><Line /></View> 7} 8function Line () { 9 return <View styleName='line' /> 10} 11css` 12 .card { 13 padding: 8px 16px; 14 } 15 .line { 16 margin-top: 16px; 17 border-radius: 8px; 18 } 19 .active { 20 background-color: red; 21 } 22`
1import React from 'react' 2import { View } from 'react-native' 3import { css, styl } from 'startupjs' 4 5export default function Card () { 6 return <View styleName='root active'><Line /></View> 7 // .root will be scoped only to this specific component 8 styl` 9 .root 10 padding: 8px 16px 11 ` 12} 13function Line () { 14 return <View styleName='root' /> 15 // .root will be scoped only to this specific component 16 css` 17 .root { 18 margin-top: 16px; 19 border-radius: 8px; 20 } 21 ` 22} 23// you can use global- and local- scoped styles together 24styl` 25 .active 26 background-color red 27`
MIT
No vulnerabilities found.
Reason
packaging workflow detected
Details
Reason
binaries present in source code
Details
Reason
8 commit(s) and 2 issue activity found in the last 90 days -- score normalized to 8
Reason
Found 2/30 approved changesets -- score normalized to 0
Reason
detected GitHub workflow tokens with excessive permissions
Details
Reason
dangerous workflow patterns detected
Details
Reason
no effort to earn an OpenSSF best practices badge detected
Reason
security policy file not detected
Details
Reason
license file not detected
Details
Reason
project is not fuzzed
Details
Reason
SAST tool is not run on all commits -- score normalized to 0
Details
Reason
dependency not pinned by hash detected -- score normalized to 0
Details
Reason
42 existing vulnerabilities detected
Details
Score
Last Scanned on 2025-06-30
The Open Source Security Foundation is a cross-industry collaboration to improve the security of open source software (OSS). The Scorecard provides security health metrics for open source projects.
Learn More